Skip to content

Commit

Permalink
Merge 7891797 into 5cd784e
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 5cd784e + 7891797 commit 40f54d3
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>)
get(url: string, options?: Record<string, unknown>): unknown
post(url: string, options?: Record<string, unknown>): unknown
put(url: string, options?: Record<string, unknown>): unknown
delete(url: string, options?: Record<string, unknown>): unknown
patch(url: string, options?: Record<string, unknown>): unknown
options(url: string, options?: Record<string, unknown>): unknown
}
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 40f54d3

Please sign in to comment.