scriptflow/server/types.ts
Song367 b49d703e3c
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1m22s
一键转换模式优化
2026-03-11 21:53:41 +08:00

11 lines
179 B
TypeScript

export interface DraftPayload {
version: number;
savedAt: string;
data: Record<string, unknown>;
}
export interface AuthenticatedUser {
id: number;
username: string;
}