@amisa/style-plugin
Version:
Transfom css's file to java scripts style element and js to script element
14 lines (10 loc) • 491 B
TypeScript
export declare function AmisaCssTransformStylePlugin(): {
name: string;
transform(code: string, id: string): string | void | null | undefined;
};
export declare function AmisaJsTransformScriptPlugin(): {
name: string;
transform(code: string, id: string): string | void | null | undefined;
};
export declare function AmisaWriteBundle(options: any, bundle: any, replaceCallBackFunction: (finaleCode: string) => string, typeIsModule?: boolean): void;
export { }