Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
12 lines
500 B
Plaintext
12 lines
500 B
Plaintext
type GetOptions = {
|
|
params?: Record<string, unknown>;
|
|
} & RequestInit;
|
|
export declare const requests: {
|
|
delete: (url: string, options?: RequestInit) => Promise<Response>;
|
|
get: (url: string, options?: GetOptions) => Promise<Response>;
|
|
patch: (url: string, options?: RequestInit) => Promise<Response>;
|
|
post: (url: string, options?: RequestInit) => Promise<Response>;
|
|
put: (url: string, options?: RequestInit) => Promise<Response>;
|
|
};
|
|
export {};
|
|
//# sourceMappingURL=api.d.ts.map |