@gear-js/react-hooks
Version:
React hooks used across Gear applications
11 lines (10 loc) • 473 B
TypeScript
import { HexString } from '@gear-js/api';
declare function useIsAnyVoucherActive(accountAddress: string | undefined, programId: HexString | undefined): {
isAnyVoucherActive: boolean | undefined;
isAnyVoucherActiveReady: boolean;
};
declare function useIsAnyAccountVoucherActive(programId: HexString | undefined): {
isAnyVoucherActive: boolean | undefined;
isAnyVoucherActiveReady: boolean;
};
export { useIsAnyVoucherActive, useIsAnyAccountVoucherActive };