🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
7 lines
196 B
TypeScript
Executable File
7 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;
|