6 lines
144 B
TypeScript
6 lines
144 B
TypeScript
|
import { Options } from './types';
|
||
|
export declare function createConfig(context: any, opts?: any): {
|
||
|
context: any;
|
||
|
options: Options;
|
||
|
};
|