@steemit/steem-js 1.0.9 → 1.0.10

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.
@@ -1,8 +0,0 @@
1
- /**
2
- * Browser-compatible polyfill for secure-random
3
- * Uses crypto.getRandomValues for secure random number generation
4
- */
5
- declare const _default: {
6
- randomBuffer(size: number): Buffer;
7
- };
8
- export default _default;
@@ -1,7 +0,0 @@
1
- export declare const Buffer: any;
2
- declare const _default: {
3
- Buffer: any;
4
- INSPECT_MAX_BYTES: number;
5
- kMaxLength: number;
6
- };
7
- export default _default;
@@ -1,17 +0,0 @@
1
- /**
2
- * Browser polyfill for the net module
3
- * In browser environments, net module functionality is not available, provides error messages
4
- */
5
- export declare const createConnection: (..._args: any[]) => never;
6
- export declare const createServer: (..._args: any[]) => never;
7
- export declare const isIP: (input: string) => number;
8
- export declare const isIPv4: (input: string) => boolean;
9
- export declare const isIPv6: (input: string) => boolean;
10
- declare const net: {
11
- createConnection: (..._args: any[]) => never;
12
- createServer: (..._args: any[]) => never;
13
- isIP: (input: string) => number;
14
- isIPv4: (input: string) => boolean;
15
- isIPv6: (input: string) => boolean;
16
- };
17
- export default net;
@@ -1,19 +0,0 @@
1
- /**
2
- * 测试 polyfill 功能的示例文件
3
- * 这个文件用于验证 path 和 url polyfill 是否正常工作
4
- */
5
- /**
6
- * 测试 path polyfill 功能
7
- */
8
- export declare function testPathPolyfill(): boolean;
9
- /**
10
- * 测试 URL polyfill 功能
11
- */
12
- export declare function testUrlPolyfill(): boolean;
13
- /**
14
- * 运行所有 polyfill 测试
15
- */
16
- export declare function runPolyfillTests(): {
17
- path: boolean;
18
- url: boolean;
19
- };
@@ -1,15 +0,0 @@
1
- /**
2
- * Browser polyfill for the tls module
3
- * In browser environments, tls module functionality is not available, provides error messages
4
- */
5
- export declare const connect: (..._args: any[]) => never;
6
- export declare const createServer: (..._args: any[]) => never;
7
- export declare const createSecureContext: (..._args: any[]) => never;
8
- export declare const getCiphers: () => string[];
9
- declare const tls: {
10
- connect: (..._args: any[]) => never;
11
- createServer: (..._args: any[]) => never;
12
- createSecureContext: (..._args: any[]) => never;
13
- getCiphers: () => string[];
14
- };
15
- export default tls;
@@ -1,17 +0,0 @@
1
- /**
2
- * Browser-compatible util polyfill
3
- * Provides minimal util functions needed by dependencies
4
- */
5
- export declare const util: {
6
- inspect: (obj: any) => string;
7
- format: (...args: any[]) => string;
8
- types: {
9
- isDate: (obj: any) => obj is Date;
10
- isRegExp: (obj: any) => obj is RegExp;
11
- isError: (obj: any) => obj is Error;
12
- isArrayBuffer: (obj: any) => obj is ArrayBuffer;
13
- isTypedArray: (obj: any) => boolean;
14
- };
15
- promisify: (fn: any) => (this: any, ...args: any[]) => Promise<any>;
16
- };
17
- export default util;