6 lines
196 B
TypeScript
Executable file
6 lines
196 B
TypeScript
Executable file
import { Filter, Options } from './types';
|
|
export declare type Config = {
|
|
context: Filter;
|
|
options: Options;
|
|
};
|
|
export declare function createConfig(context: any, opts?: Options): Config;
|