new lib version [CI SKIP]

This commit is contained in:
2020-12-13 12:05:55 +00:00
parent c77866d1c3
commit 32b92aa76d
88 changed files with 1750 additions and 0 deletions

14
dist/core/ApiRequestOptions.ts vendored Normal file
View File

@@ -0,0 +1,14 @@
/* 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>;
}