mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-01-16 23:00:51 +00:00
9 lines
364 B
TypeScript
9 lines
364 B
TypeScript
import URL from "../../../Types/API/URL";
|
|
import type { RequestOptions as CoreRequestOptions } from "../../../Utils/API";
|
|
import Dictionary from "../../../Types/Dictionary";
|
|
|
|
export default interface RequestOptions {
|
|
requestHeaders?: Dictionary<string> | undefined;
|
|
overrideRequestUrl?: URL | undefined;
|
|
apiRequestOptions?: CoreRequestOptions | undefined;
|
|
}
|