This repository has been archived on 2023-11-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
lfk-client-node/dist/core/ApiRequestOptions.ts
2020-12-13 08:11:57 +00:00

14 lines
502 B
TypeScript

/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export type ApiRequestOptions = {
readonly method: 'GET' | 'PUT' | 'POST' | 'DELETE' | 'OPTIONS' | 'HEAD' | 'PATCH';
readonly path: string;
readonly cookies?: Record<string, any>;
readonly headers?: Record<string, any>;
readonly query?: Record<string, any>;
readonly formData?: Record<string, any>;
readonly body?: any;
readonly responseHeader?: string;
readonly errors?: Record<number, string>;
}