Union type of small non-negative integer literals. Convenience type for SmallInt<'>=0'>.
SmallInt<'>=0'>
type Index = SmallUint; // 0 | 1 | 2 | ... | 39const getItem = <T>(arr: readonly T[], i: Index) => arr[i]; Copy
type Index = SmallUint; // 0 | 1 | 2 | ... | 39const getItem = <T>(arr: readonly T[], i: Index) => arr[i];
Union type of small non-negative integer literals. Convenience type for
SmallInt<'>=0'>.