bundle.d.ts 414 B

123456789
  1. import { GeneratePartial, RequiredSWDestPartial } from '../types';
  2. interface NameAndContents {
  3. contents: string | Uint8Array;
  4. name: string;
  5. }
  6. export declare function bundle({ babelPresetEnvTargets, inlineWorkboxRuntime, mode, sourcemap, swDest, unbundledCode, }: Omit<GeneratePartial, 'runtimeCaching'> & RequiredSWDestPartial & {
  7. unbundledCode: string;
  8. }): Promise<Array<NameAndContents>>;
  9. export {};