UNPKG

@nestia/sdk

Version:

Nestia SDK and Swagger generator

10 lines (9 loc) 391 B
import { type NumericLiteral, type PrefixUnaryExpression } from "@ttsc/factory"; /** * Numeric-literal helper that handles negative values via a leading * `MinusToken` prefix unary, matching how the TypeScript factory itself emits * negative numeric literals. */ export declare namespace ExpressionFactory { const number: (value: number) => NumericLiteral | PrefixUnaryExpression; }