mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 10:30:44 +00:00
13 lines
274 B
TypeScript
13 lines
274 B
TypeScript
export type NpmPackBudgetResult = {
|
|
filename?: string;
|
|
unpackedSize?: number;
|
|
};
|
|
|
|
export declare function collectPackUnpackedSizeErrors(
|
|
results: Iterable<NpmPackBudgetResult>,
|
|
options?: {
|
|
budgetBytes?: number;
|
|
missingDataMessage?: string;
|
|
},
|
|
): string[];
|