mirror of
https://github.com/0PandaDEV/Qopy.git
synced 2025-04-22 05:34:04 +02:00
21 lines
275 B
TypeScript
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,
|
|
}
|