HJ_Server/src/module/collection_actionLog.ts
DESKTOP-15R5JU0\legu 97e070ea81 init
2023-11-17 12:02:12 +08:00

19 lines
311 B
TypeScript

export type actionLogType = {
day: {
log: {
[k: string]: number;
};
};
retain: {
log: {
[k: string]: number;
};
};
};
export type CollectionActionLog<T extends keyof actionLogType> = {
uid: string;
type: T;
} & actionLogType[T];