ThirdwebSDK
function constructor( options: undefined | {},
Inherited from
ThirdwebSDKCore.once
Add a one-time listener for a given event.
function once<T extends string | symbol>( event: T, fn: (...args: Array<any>) => void, context?: any,): this;
Inherited from
ThirdwebSDKCore.removeListener
Remove the listeners of a given event.
function removeListener<T extends string | symbol>( event: T, fn?: (...args: Array<any>) => void, context?: any, once?: boolean,): this;