@jsse/quick-maths
Version:
12 lines (10 loc) • 500 B
text/typescript
/**
* Seventeen Thirty Eight
*/
declare const SEVENTEEN_THIRTY_EIGHT = 1738;
declare const SIX_SEVEN_NINE = 679;
type SeventeenThirtyEight = typeof SEVENTEEN_THIRTY_EIGHT;
type SixSevenNine = typeof SIX_SEVEN_NINE;
declare function is1738(value: unknown): value is SeventeenThirtyEight;
declare function is679(value: unknown): value is SixSevenNine;
export { SEVENTEEN_THIRTY_EIGHT, SIX_SEVEN_NINE, type SeventeenThirtyEight, type SixSevenNine, SEVENTEEN_THIRTY_EIGHT as default, is1738, is679 };