[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) › ByteSizeLiteralGiB

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

Defined in: [packages/common/src/Bytes.ts:1639](https://github.com/evoluhq/evolu/blob/dd96d79f1dbe9a49fa12ce8e0aa7d3d0177795ca/packages/common/src/Bytes.ts#L1639)

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