UNPKG

@promptbook/remote-server

Version:

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

20 lines (19 loc) 400 B
/** * Represents items which are compared to each other */ export type FromtoItems = ReadonlyArray<{ /** * The title of the item */ readonly title: string; /** * The start of the item * * This can mean anything, like seconds, milliseconds, dollars, etc. */ readonly from: number; /** * The end of the item */ readonly to: number; }>;