ts-prims
Version:
Typescript Primitives
47 lines (34 loc) • 1.54 kB
text/typescript
/** Copyright 2025 by Stijn de Witt, some rights reserved */
export type { big, big64, big96, big128, big160,
big192, big256, big512, big4K } from './big.js'
export type { chars, Chars, LengthOf, CharsConstraint } from './chars.js'
export type { clob } from './clob.js'
export type { int, int8, int16, int24, int32,
int40, int48, int54 } from './int.js'
export type { length, Length, ShortLength, MediumLength, LongLength,
LengthConstraint, ShortLengthChars, MediumLengthChars, LongLengthChars
} from './length.js'
export type { memo } from './memo.js'
export type { PRIM, prim, IsPrim, AsPrim, ToPrim, Rtti, Constructor,
PrimConstructor, SuperConstructor, NativeConstructor, PrimFactory,
PrimTypeOf } from './prim.js'
export type { text } from './text.js'
export type { _Lt, Lt, Lte } from './util.js'
export type { varchar } from './varchar.js'
export type { varint, VARINT, IntegerType } from './varint.js'
export type { Width, LowWidth, HighWidth, LowWidthBits, HighWidthBits,
WidthBitsArray, WidthBits, NativeWidth, NumberWidth, BigIntWidth, _0bit,
_8bit, _16bit, _24bit, _32bit, _40bit, _48bit, _54bit, _64bit, _96bit,
_128bit, _160bit, _192bit, _256bit, _512bit, _4Kbit} from './width.js'
export * from './big.js'
export * from './chars.js'
export * from './clob.js'
export * from './int.js'
export * from './length.js'
export * from './memo.js'
export * from './prim.js'
export * from './text.js'
export * from './util.js'
export * from './varchar.js'
export * from './varint.js'
export * from './width.js'