Add standalone type definitions
This commit is contained in:
13
src/types/Note.ts
Normal file
13
src/types/Note.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
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;
|
||||
};
|
||||
Reference in New Issue
Block a user