@ic-wallet-kit/hpl
Version:
Ic middleware wallet HPL protocol
17 lines (16 loc) • 1.14 kB
TypeScript
import { EditHplVirtualAccountForm } from "../../../forms";
import { HplMintCacheDataHandler, HplOwnerCacheDataHandler, HplVirtualAccountCacheDataHandler } from "../../../internalHandlers/cacheDataHandlers";
import { CanisterService } from "../../../service";
import { HplVirtualAccount } from "../../../types";
import { BaseHandler, IdentifierService, ILogger } from "@ic-wallet-kit/common";
import "reflect-metadata";
export declare class EditHplVirtualAccountInternalHandler extends BaseHandler<EditHplVirtualAccountForm, HplVirtualAccount> {
private identifierService;
private canisterService;
private hplVirtualAccountCacheDataHandler;
private hplOwnerCacheDataHandler;
private hplMintCacheDataHandler;
constructor(logger: ILogger, identifierService: IdentifierService, canisterService: CanisterService, hplVirtualAccountCacheDataHandler: HplVirtualAccountCacheDataHandler, hplOwnerCacheDataHandler: HplOwnerCacheDataHandler, hplMintCacheDataHandler: HplMintCacheDataHandler);
validate(form: EditHplVirtualAccountForm): Promise<void>;
process(form: EditHplVirtualAccountForm): Promise<HplVirtualAccount>;
}