xshell 1.3.74 → 1.3.75

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xshell",
3
- "version": "1.3.74",
3
+ "version": "1.3.75",
4
4
  "type": "module",
5
5
  "main": "./index.js",
6
6
  "bin": {
@@ -76,7 +76,7 @@
76
76
  "react": "^19.2.7",
77
77
  "react-i18next": "^17.0.8",
78
78
  "resolve-path": "^1.4.0",
79
- "sass": "^1.100.0",
79
+ "sass": "^1.101.0",
80
80
  "sass-loader": "^17.0.0",
81
81
  "source-map-loader": "^5.0.0",
82
82
  "strip-ansi": "^7.2.0",
@@ -266,9 +266,9 @@ export declare const brackets: {
266
266
  readonly square: readonly ['[', ']'];
267
267
  readonly curly: readonly ['{', '}'];
268
268
  readonly pointy: readonly ['<', '>'];
269
- readonly corner: readonly ['\u300C', '\u300D'];
270
- readonly fat: readonly ['\u3010', '\u3011'];
271
- readonly tortoise_shell: readonly ['\u3014', '\u3015'];
269
+ readonly corner: readonly ['', ''];
270
+ readonly fat: readonly ['', ''];
271
+ readonly tortoise_shell: readonly ['', ''];
272
272
  };
273
273
  export declare function to_json(obj: any, replacer?: any): string;
274
274
  export declare function to_json_safely(obj: any, replacer?: any): string;
package/utils.d.ts CHANGED
@@ -22,16 +22,14 @@ export declare function inspect(obj: any, options?: util.InspectOptions & {
22
22
  limit?: number;
23
23
  omit?: string[];
24
24
  }): string;
25
- export interface inspect {
26
- custom: typeof util.inspect.custom;
27
- defaultOptions: typeof util.inspect.defaultOptions;
28
- }
29
25
  export declare namespace inspect {
30
26
  var custom: symbol;
31
- }
32
- export declare namespace inspect {
33
27
  var defaultOptions: util.InspectOptions;
34
28
  }
29
+ export interface inspect {
30
+ custom: typeof util.inspect.custom;
31
+ defaultOptions: typeof util.inspect.defaultOptions;
32
+ }
35
33
  /** 根据 enabled 选项返回有 / 无颜色的字符串 (str) */
36
34
  export declare function colored(str: string, color: string, enabled?: boolean): any;
37
35
  /** 消费一个可读流 */