UNPKG

192 BTypeScriptView Raw
1/** Boundary of a one-dimensional interval. */
2export declare const Boundary: {
3 START: "start";
4 END: "end";
5};
6export declare type Boundary = (typeof Boundary)[keyof typeof Boundary];