@shined/doctor-binding 0.0.39 → 0.0.40

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/index.d.ts +12 -12
  2. package/package.json +9 -9
package/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /* auto-generated by NAPI-RS */
2
2
  /* eslint-disable */
3
3
  export declare class JsSpecifications {
4
- static create(cwd: string, opts?: JsSpecificationsRenderOpts | undefined | null): JsSpecifications
4
+ static create(cwd: string, opts?: RawSpecificationsRenderOpts | undefined | null): JsSpecifications
5
5
  validateNpmrc(): Promise<Array<JsMessages>>
6
6
  validateNodeVersion(): Promise<Array<JsMessages>>
7
7
  validatePackageJson(): Promise<Array<JsMessages>>
@@ -9,7 +9,7 @@ export declare class JsSpecifications {
9
9
  validateAll(): Promise<Array<JsMessages>>
10
10
  }
11
11
 
12
- export declare function cloc(paths: Array<string>, opts?: JsClocOpts | undefined | null): Array<JsLanguageStats>
12
+ export declare function cloc(paths: Array<string>, opts?: RawClocOpts | undefined | null): Array<JsLanguageStats>
13
13
 
14
14
  export interface Diagnostic {
15
15
  fileName: string
@@ -31,10 +31,6 @@ export interface GlobJsArgs {
31
31
 
32
32
  export declare function initializeLogger(level?: LogLevel | undefined | null): void
33
33
 
34
- export interface JsClocOpts {
35
- ignore?: Array<string>
36
- }
37
-
38
34
  export interface JsDiagnostics {
39
35
  message: string
40
36
  code?: string
@@ -313,12 +309,6 @@ export interface JsSourceSpan {
313
309
  length: number
314
310
  }
315
311
 
316
- export interface JsSpecificationsRenderOpts {
317
- withDashboard?: boolean
318
- maxRenderCount?: number
319
- quiet?: boolean
320
- }
321
-
322
312
  export interface LabeledLoc {
323
313
  span: Span
324
314
  loc: Location
@@ -346,6 +336,16 @@ export interface Position {
346
336
  col: number
347
337
  }
348
338
 
339
+ export interface RawClocOpts {
340
+ ignore?: Array<string>
341
+ }
342
+
343
+ export interface RawSpecificationsRenderOpts {
344
+ withDashboard?: boolean
345
+ maxRenderCount?: number
346
+ quiet?: boolean
347
+ }
348
+
349
349
  export interface Response {
350
350
  rc: string
351
351
  map: Record<string, number>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shined/doctor-binding",
3
- "version": "0.0.39",
3
+ "version": "0.0.40",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "repository": {
@@ -20,13 +20,13 @@
20
20
  },
21
21
  "homepage": "https://github.com/sheinsight/doctor-engine#readme",
22
22
  "optionalDependencies": {
23
- "@shined/doctor-binding-darwin-x64": "0.0.39",
24
- "@shined/doctor-binding-darwin-arm64": "0.0.39",
25
- "@shined/doctor-binding-win32-x64-msvc": "0.0.39",
26
- "@shined/doctor-binding-win32-arm64-msvc": "0.0.39",
27
- "@shined/doctor-binding-linux-x64-gnu": "0.0.39",
28
- "@shined/doctor-binding-linux-x64-musl": "0.0.39",
29
- "@shined/doctor-binding-linux-arm64-gnu": "0.0.39",
30
- "@shined/doctor-binding-linux-arm64-musl": "0.0.39"
23
+ "@shined/doctor-binding-darwin-x64": "0.0.40",
24
+ "@shined/doctor-binding-darwin-arm64": "0.0.40",
25
+ "@shined/doctor-binding-win32-x64-msvc": "0.0.40",
26
+ "@shined/doctor-binding-win32-arm64-msvc": "0.0.40",
27
+ "@shined/doctor-binding-linux-x64-gnu": "0.0.40",
28
+ "@shined/doctor-binding-linux-x64-musl": "0.0.40",
29
+ "@shined/doctor-binding-linux-arm64-gnu": "0.0.40",
30
+ "@shined/doctor-binding-linux-arm64-musl": "0.0.40"
31
31
  }
32
32
  }