You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
414 B
10 lines
414 B
2 years ago
|
import { GeneratePartial, RequiredSWDestPartial } from '../types';
|
||
|
interface NameAndContents {
|
||
|
contents: string | Uint8Array;
|
||
|
name: string;
|
||
|
}
|
||
|
export declare function bundle({ babelPresetEnvTargets, inlineWorkboxRuntime, mode, sourcemap, swDest, unbundledCode, }: Omit<GeneratePartial, 'runtimeCaching'> & RequiredSWDestPartial & {
|
||
|
unbundledCode: string;
|
||
|
}): Promise<Array<NameAndContents>>;
|
||
|
export {};
|