mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-09 10:39:49 -04:00
14 lines
441 B
TypeScript
14 lines
441 B
TypeScript
import { ManifestEntry } from '../types';
|
|
type AdditionalManifestEntriesTransform = {
|
|
(manifest: Array<ManifestEntry & {
|
|
size: number;
|
|
}>): {
|
|
manifest: Array<ManifestEntry & {
|
|
size: number;
|
|
}>;
|
|
warnings: string[];
|
|
};
|
|
};
|
|
export declare function additionalManifestEntriesTransform(additionalManifestEntries: Array<ManifestEntry | string>): AdditionalManifestEntriesTransform;
|
|
export {};
|