Qopy/types/types.ts
PandaDEV 163b298783
feat: create types
This was commited on flight VA541 :)
2024-12-05 19:43:13 +11:00

21 lines
275 B
TypeScript

export interface HistoryItem {
id: string;
content_type: ContentType;
content: string;
favicon: string;
timestamp: Date;
}
export interface Settings {
key: string;
value: string;
}
export enum ContentType {
TEXT,
IMAGE,
FILE,
LINK,
COLOR,
CODE,
}