11 lines
195 B
TypeScript
11 lines
195 B
TypeScript
export type LabelData = {
|
|
id: number;
|
|
text: string;
|
|
textKey: string;
|
|
conversations: string[];
|
|
color: string;
|
|
offset: number;
|
|
emoji: string;
|
|
createTime: number;
|
|
};
|