lingjing/node_modules/next/dist/shared/lib/size-limit.d.ts
2026-02-23 09:51:43 +00:00

7 lines
306 B
TypeScript

import type { SizeLimit } from '../../types';
export declare const DEFAULT_MAX_POSTPONED_STATE_SIZE: SizeLimit;
/**
* Parses the maxPostponedStateSize config value, using the default if not provided.
*/
export declare function parseMaxPostponedStateSize(size: SizeLimit | undefined): number | undefined;