UNPKG

@fbl-plugins/crypto

Version:
20 lines (19 loc) 684 B
import { ActionHandler, ActionProcessor, ActionSnapshot, IActionHandlerMetadata, IContext, IDelegatedParameters } from 'fbl'; import { BaseCryptoActionProcessor } from './BaseCryptoActionProcessor'; export declare class EncryptActionProcessor extends BaseCryptoActionProcessor { /** * @inheritdoc */ execute(): Promise<void>; } export declare class EncryptActionHandler extends ActionHandler { private static metadata; /** * @inheritdoc */ getMetadata(): IActionHandlerMetadata; /** * @inheritdoc */ getProcessor(options: any, context: IContext, snapshot: ActionSnapshot, parameters: IDelegatedParameters): ActionProcessor; }