Skip to content

Commit

Permalink
Merge 12af79d into e1795c1
Browse files Browse the repository at this point in the history
  • Loading branch information
João Dias Conde Azevedo committed Jan 8, 2021
2 parents e1795c1 + 12af79d commit 8fb923b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
9 changes: 9 additions & 0 deletions types/api/api.d.ts
@@ -0,0 +1,9 @@
export declare class API {
constructor(kwargs?: Record<string, unknown>)
async get(url: string, options?: Record<string, unknown>): any
async post(url: string, options?: Record<string, unknown>): any
async put(url: string, options?: Record<string, unknown>): any
async delete(url: string, options?: Record<string, unknown>): any
async patch(url: string, options?: Record<string, unknown>): any
async options(url: string, options?: Record<string, unknown>): any
}
1 change: 1 addition & 0 deletions types/api/index.d.ts
@@ -0,0 +1 @@
export * from "./api";
1 change: 1 addition & 0 deletions types/index.d.ts
@@ -1,3 +1,4 @@
export * from "./api";
export * from "./base";
export * from "./data";
export * from "./util";

0 comments on commit 8fb923b

Please sign in to comment.