mirror of
https://github.com/arcan1s/ahriman.git
synced 2026-04-07 02:53:38 +00:00
6 lines
132 B
TypeScript
6 lines
132 B
TypeScript
export interface RequestOptions {
|
|
method?: string;
|
|
query?: Record<string, string | number | boolean>;
|
|
json?: unknown;
|
|
}
|