UNPKG

@promptbook/langtail

Version:

It's time for a paradigm shift. The future of software in plain English, French or Latin

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; }>;