UNPKG

test-ic-wallet-middleware-hpl

Version:
14 lines (13 loc) 984 B
import { EmptyHplResult, ResetHplVirtualAccountForm } from "../../../forms"; import { HplVirtualAccountStateCacheDataHandler } from "../../../internalHandlers/cacheDataHandlers/hplVirtualAccountStateCacheDataHandler/hplVirtualAccountStateCacheDataHandler"; import { CanisterService } from "../../../service"; import { BaseHandler, IdentifierService, ILogger } from "@ic-wallet-middleware/common"; import "reflect-metadata"; export declare class ResetHplVirtualAccountInternalHandler extends BaseHandler<ResetHplVirtualAccountForm, EmptyHplResult> { private identifierService; private canisterService; private hplVirtualAccountStateCacheDataHandler; constructor(logger: ILogger, identifierService: IdentifierService, canisterService: CanisterService, hplVirtualAccountStateCacheDataHandler: HplVirtualAccountStateCacheDataHandler); validate(form: ResetHplVirtualAccountForm): Promise<void>; process(form: ResetHplVirtualAccountForm): Promise<EmptyHplResult>; }