@nattyjs/types 0.0.1-beta.5 → 0.0.1-beta.51

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.d.ts +6 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -26,6 +26,7 @@ interface ClassTypeInfo extends TypeInfo {
26
26
  methods?: MethodInfo[];
27
27
  properties?: TypeInfo[];
28
28
  route?: DecoratorInfo;
29
+ jsDoc?: any;
29
30
  }
30
31
 
31
32
  interface BuildOptions {
@@ -33,6 +34,9 @@ interface BuildOptions {
33
34
  rootDir: string;
34
35
  port: number;
35
36
  commandName: string;
37
+ outDir: string;
38
+ startupFilePath: string;
39
+ clearScreen: boolean;
36
40
  }
37
41
 
38
42
  type HttpRequestBodyInfo = {
@@ -41,6 +45,7 @@ type HttpRequestBodyInfo = {
41
45
  number?: number | number[];
42
46
  boolean?: boolean | boolean[];
43
47
  FormData?: FormData;
48
+ buffer?: any;
44
49
  ArrayBuffer?: ArrayBuffer;
45
50
  Blob?: Blob;
46
51
  json?: {
@@ -89,6 +94,7 @@ interface HttpResponseInit {
89
94
  headers?: HeadersInit;
90
95
  cookies?: Cookie[];
91
96
  enableContentNegotiation?: boolean;
97
+ isBuffer?: boolean;
92
98
  }
93
99
 
94
100
  interface NattyTestModule {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nattyjs/types",
3
- "version": "0.0.1-beta.5",
3
+ "version": "0.0.1-beta.51",
4
4
  "keywords": [],
5
5
  "author": "ajayojha <ojhaajay@outlook.com>",
6
6
  "license": "ISC",