mirror of https://github.com/jkjoy/sunpeiwen.git
14 lines
462 B
TypeScript
14 lines
462 B
TypeScript
import { ManifestEntry } from '../types';
|
|
declare type AdditionalManifestEntriesTransform = {
|
|
(manifest: Array<ManifestEntry & {
|
|
size: number;
|
|
}>): {
|
|
manifest: Array<ManifestEntry & {
|
|
size: number;
|
|
}>;
|
|
warnings: string[];
|
|
};
|
|
};
|
|
export declare function additionalManifestEntriesTransform(additionalManifestEntries: Array<ManifestEntry | string>): AdditionalManifestEntriesTransform;
|
|
export {};
|