wxt
Version:
⚡ Next-gen Web Extension Framework
12 lines (11 loc) • 360 B
text/typescript
import { InlineConfig } from "../types.mjs";
//#region src/core/zip.d.ts
/**
* Build and zip the extension for distribution.
*
* @param config Optional config that will override your `<root>/wxt.config.ts`.
* @returns A list of all files included in the ZIP.
*/
declare function zip(config?: InlineConfig): Promise<string[]>;
//#endregion
export { zip };