mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 22:49:29 +08:00
13 lines
449 B
Text
13 lines
449 B
Text
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 {};
|