2021-07-09 22:06:32 +10:00
|
|
|
import { Color } from "../helpers/colors";
|
|
|
|
|
|
2021-07-08 12:01:02 +10:00
|
|
|
export type Note = {
|
|
|
|
|
id: string;
|
2021-07-09 22:06:32 +10:00
|
|
|
color: Color;
|
2021-07-08 12:01:02 +10:00
|
|
|
lastModified: number;
|
|
|
|
|
lastModifiedBy: string;
|
|
|
|
|
locked: boolean;
|
|
|
|
|
size: number;
|
|
|
|
|
text: string;
|
|
|
|
|
textOnly: boolean;
|
|
|
|
|
visible: boolean;
|
|
|
|
|
x: number;
|
|
|
|
|
y: number;
|
|
|
|
|
};
|