Skip to content

Commit

Permalink
🪲 fix not exported FunReq types
Browse files Browse the repository at this point in the history
  • Loading branch information
hemedani committed May 24, 2021
1 parent ace2a6c commit e8e6127
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
declare type RequestInfo = Request | string;
declare type HeadersInit = Headers | string[][] | Record<string, string>;
interface FunReq extends RequestInit {
export interface FunReq extends RequestInit {
url: RequestInfo;
}
declare type Schema = {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hemedani/funreq",
"version": "1.0.1",
"version": "1.0.2",
"description": "an http to send and recive data from funql backend",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ type RequestInfo = Request | string;

type HeadersInit = Headers | string[][] | Record<string, string>;

interface FunReq extends RequestInit {
export interface FunReq extends RequestInit {
url: RequestInfo;
}

Expand Down

0 comments on commit e8e6127

Please sign in to comment.