UNPKG

open-next-cdk

Version:

Deploy a NextJS app using OpenNext packaging to serverless AWS using CDK

10 lines (9 loc) 279 B
/** * @internal * * Serializes a number, turning non-numeric values into strings. * * @param value - The number to serialize. * @returns A number, or a string if the given number was non-numeric. */ export declare const serializeFloat: (value: number) => string | number;