mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 01:49:14 +08:00
14 lines
547 B
Text
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 {};
|