@gear-js/react-hooks
Version:
React hooks used across Gear applications
10 lines (9 loc) • 321 B
TypeScript
declare function useIssuedVouchers(accountAddress: string | undefined): {
vouchers: string[] | undefined;
isEachVoucherReady: boolean;
};
declare function useAccountIssuedVouchers(): {
vouchers: string[] | undefined;
isEachVoucherReady: boolean;
};
export { useIssuedVouchers, useAccountIssuedVouchers };