export type ValueOptions = number | string | boolean; export type ArrayOptions = ValueOptions[]; export type OptionsValue = ValueOptions | ArrayOptions; export type Options = { [key: string]: OptionsValue; }; export declare const optionify: (options: Options) => string; export declare const fetchAndCheck: (url: string, requestInit?: RequestInit) => Promise; export declare const assertOk: (response: Response) => Promise; //# sourceMappingURL=utils.d.ts.map