mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-10 10:55:20 +02:00
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;
|