@ikona/cli
Version:
12 lines (9 loc) • 311 B
text/typescript
import { Config } from '../types.mjs';
import 'svgo';
declare const defaultConfig: Config;
declare function findConfigFile({ cwd, file }: {
cwd: string;
file?: string;
}): string | void;
declare const resolveFileConfig: () => Promise<any>;
export { defaultConfig, findConfigFile, resolveFileConfig };