Urara-Blog/node_modules/.pnpm-store/v3/files/ec/cf583116f0b4c496435829af423f07e72edcafd87582e6a4e3064421814bfc6ce297094abd770405050f08b296b6f8b2013e31be9f6442778f841c0aa6df1d
2022-08-14 01:14:53 +08:00

14 lines
547 B
Text

import { ModuleFormat } from '../interfaces';
import { Identifier, ImportDeclaration, ExportNamedDeclaration } from 'estree';
interface Export {
name: string;
as: string;
}
export default function create_module(program: any, format: ModuleFormat, name: Identifier, banner: string, sveltePath: string, helpers: Array<{
name: string;
alias: Identifier;
}>, globals: Array<{
name: string;
alias: Identifier;
}>, imports: ImportDeclaration[], module_exports: Export[], exports_from: ExportNamedDeclaration[]): void;
export {};