/** * @file Uint * @module unist-util-types/Uint */ /** * Number used for iteration. * * Range: `[0, 10]` */ type Uint = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 export type { Uint as default }