Interface for an entity action. UmbEntityAction

interface UmbEntityAction<ArgsMetaType> {
    args: UmbEntityActionArgs<ArgsMetaType>;
    destroy(): void;
    execute(): Promise<void>;
    getHref(): Promise<undefined | string>;
}

Type Parameters

  • ArgsMetaType

Hierarchy (view full)

Implemented by

Properties

Methods

Properties

Methods

""