[API reference](https://evolu.dev/docs/api-reference) › [@evolu/common](https://evolu.dev/docs/api-reference/common) › [Bytes](https://evolu.dev/docs/api-reference/common/Bytes) › ByteSizeLiteralTiB

```ts
const ByteSizeLiteralTiB: union(
  templateLiteral(Digit1To9, "TiB"),
  templateLiteral(Digit1To9, Digit, "TiB"),
  templateLiteral(Digit1To9, Digit, Digit, "TiB"),
  templateLiteral("10", Digit0To1, Digit, "TiB"),
  templateLiteral("102", Digit0To3, "TiB"),
  templateLiteral(Digit1To9, ".5TiB"),
  templateLiteral(Digit1To9, Digit, ".5TiB"),
  templateLiteral(Digit1To9, Digit, Digit, ".5TiB"),
  templateLiteral("10", Digit0To1, Digit, ".5TiB"),
  templateLiteral("102", Digit0To3, ".5TiB"),
);
```

Defined in: [packages/common/src/Bytes.ts:1714](https://github.com/evoluhq/evolu/blob/ecbac001e0c18bbc45b44715f49ecc3a768c5ec9/packages/common/src/Bytes.ts#L1714)

TiB: `"1TiB"` to `"1023TiB"` or `"1.5TiB"` to `"1023.5TiB"`. See
[ByteSizeLiteral](https://evolu.dev/docs/api-reference/common/Bytes/variables/ByteSizeLiteral).