@orderly.network/core 2.0.3 → 2.0.4
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/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -933,7 +933,7 @@ declare class Account {
|
|
|
933
933
|
private _simpleFetch;
|
|
934
934
|
get on(): <T extends string | symbol>(event: T, fn: (...args: any[]) => void, context?: any) => EventEmitter<string | symbol, any>;
|
|
935
935
|
get once(): <T extends string | symbol>(event: T, fn: (...args: any[]) => void, context?: any) => EventEmitter<string | symbol, any>;
|
|
936
|
-
get off(): <T extends string | symbol>(event: T, fn?: ((...args: any[]) => void) | undefined, context?: any, once?: boolean
|
|
936
|
+
get off(): <T extends string | symbol>(event: T, fn?: ((...args: any[]) => void) | undefined, context?: any, once?: boolean) => EventEmitter<string | symbol, any>;
|
|
937
937
|
}
|
|
938
938
|
|
|
939
939
|
type ChainNamespaceType = typeof ChainNamespace[keyof typeof ChainNamespace];
|
package/dist/index.d.ts
CHANGED
|
@@ -933,7 +933,7 @@ declare class Account {
|
|
|
933
933
|
private _simpleFetch;
|
|
934
934
|
get on(): <T extends string | symbol>(event: T, fn: (...args: any[]) => void, context?: any) => EventEmitter<string | symbol, any>;
|
|
935
935
|
get once(): <T extends string | symbol>(event: T, fn: (...args: any[]) => void, context?: any) => EventEmitter<string | symbol, any>;
|
|
936
|
-
get off(): <T extends string | symbol>(event: T, fn?: ((...args: any[]) => void) | undefined, context?: any, once?: boolean
|
|
936
|
+
get off(): <T extends string | symbol>(event: T, fn?: ((...args: any[]) => void) | undefined, context?: any, once?: boolean) => EventEmitter<string | symbol, any>;
|
|
937
937
|
}
|
|
938
938
|
|
|
939
939
|
type ChainNamespaceType = typeof ChainNamespace[keyof typeof ChainNamespace];
|