Files
ahriman/frontend/src/api/client/RequestOptions.ts
2026-02-27 16:45:24 +02:00

6 lines
132 B
TypeScript

export interface RequestOptions {
method?: string;
query?: Record<string, string | number | boolean>;
json?: unknown;
}