feat: typescript requests
TS Lint / ESLint (push) Successful in 45s
Python Lint CI / ruff (push) Successful in 56s
Python Lint CI / ruff-format-check (push) Successful in 57s
Python Lint CI / ty (push) Successful in 1m4s
TS Lint / Oxlint (push) Successful in 6m39s
TS Lint / TypeScript (push) Successful in 6m31s

This commit is contained in:
2026-07-03 20:01:40 +02:00
parent 4050368147
commit 3edc076834
2 changed files with 62 additions and 0 deletions
+25
View File
@@ -4,3 +4,28 @@ export interface Comment {
updated_at: string;
content: string;
}
export interface RawTask {
id: string;
created_at: string;
updated_at: string;
list: string;
name: string;
reset_cron: string | null;
check_date: string | null;
previous_check_date: string | null;
}
export interface TaskCreateData {
name: string;
reset_cron: string | null;
check_date?: string | null;
previous_check_date?: string | null;
}
export interface TaskUpdateData {
name?: string;
reset_cron?: string | null;
check_date?: string | null;
previous_check_date?: string | null;
}