snotes-deck/src/model.ts

11 lines
146 B
TypeScript

export type Note = {
id: Number,
content: String,
date: String,
tag: String;
};
export type Settings = {
fontSize: string
};