mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-08 17:37:24 +08:00
5 lines
442 B
TypeScript
5 lines
442 B
TypeScript
import { IndexHtmlTransform } from '../transform';
|
|
export declare function asyncReplace(input: string, re: RegExp, replacer: (match: RegExpExecArray) => string | Promise<string>): Promise<string>;
|
|
export declare function injectScriptToHtml(html: string, script: string): string;
|
|
export declare function transformIndexHtml(html: string, transforms: IndexHtmlTransform[] | undefined, apply: 'pre' | 'post', isBuild?: boolean): Promise<string>;
|