We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 25535be + 9947673 commit db770e1Copy full SHA for db770e1
package.json
@@ -19,8 +19,8 @@
19
],
20
"exports": {
21
"require": "./dist/index.cjs",
22
- "default": "./dist/index.modern.js",
23
- "types": "./dist/index.d.ts"
+ "types": "./dist/index.d.ts",
+ "default": "./dist/index.modern.js"
24
},
25
"scripts": {
26
"prebuild": "yarn run clean",
src/types.ts
@@ -1,4 +1,5 @@
1
import { AlbyResponseError } from "./AlbyResponseError";
2
+import { RequestOptions } from "./request";
3
4
export type SuccessStatus = 200 | 201;
5
export type ResponseType = "application/json";
@@ -245,4 +246,4 @@ export type GetAccountInformationResponse = {
245
246
nostr_pubkey?: string;
247
};
248
-export { AlbyResponseError };
249
+export { AlbyResponseError, RequestOptions };
0 commit comments