mirror of
https://github.com/cp6/my-idlers.git
synced 2024-11-17 07:52:40 +01:00
fd22b0bf58
V2 (Laravel re-make)
7 lines
196 B
TypeScript
7 lines
196 B
TypeScript
import { Filter, Options } from './types';
|
|
export declare type Config = {
|
|
context: Filter;
|
|
options: Options;
|
|
};
|
|
export declare function createConfig(context: any, opts?: Options): Config;
|