@modern-js/module-tools-v2
Version:
The meta-framework suite designed from scratch for frontend-focused modern web development.
15 lines • 374 B
TypeScript
export interface TransformOption {
filename: string;
baseUrl: string;
paths: Record<string, string[] | string>;
}
interface TransformDtsAliasOption {
filenames?: string[];
baseUrl: string;
paths: Record<string, string[] | string>;
}
export declare const transformDtsAlias: (option: TransformDtsAliasOption) => {
path: string;
content: string;
}[];
export {};