UNPKG

@promptbook/remote-client

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

22 lines (21 loc) 493 B
import type { number_integer, number_positive } from './number_positive'; /** * Byte count helper. */ export type number_bytes = number_integer & number_positive; /** * Kilobyte count helper. */ export type number_kilobytes = number_positive; /** * Megabyte count helper. */ export type number_megabytes = number_positive; /** * Gigabyte count helper. */ export type number_gigabytes = number_positive; /** * Terabyte count helper. */ export type number_terabytes = number_positive;