@modern-js/module-tools
Version:
Simple, powerful, high-performance modern npm package development solution.
9 lines (8 loc) • 345 B
TypeScript
import type { Input } from '../types';
export declare const getDefaultIndexEntry: ({ isTsProject, appDirectory, }: {
isTsProject: boolean;
appDirectory: string;
}) => Promise<string[]>;
export declare const normalizeInput: (input: Input, appDirectory: string, enableSvgr: boolean) => Promise<string[] | {
[name: string]: string;
}>;