Files
grungnet/src/types/Note.ts
T

14 lines
223 B
TypeScript
Raw Normal View History

2021-07-08 12:01:02 +10:00
export type Note = {
id: string;
color: string;
lastModified: number;
lastModifiedBy: string;
locked: boolean;
size: number;
text: string;
textOnly: boolean;
visible: boolean;
x: number;
y: number;
};