trilium/src/Range.ts
2019-03-11 13:49:38 +05:30

5 lines
57 B
TypeScript

export type Range = {
start: number;
end: number;
};