@hmiproject/helio-sdk
    Preparing search index...

    Type Alias CreateActionUseActionResult

    type CreateActionUseActionResult = {
        canCall?: boolean;
        call(): void | PromiseLike<void>;
        render?(): ReactNode;
    }
    Index

    Properties

    Methods

    Properties

    canCall?: boolean

    Can the action be called?

    If this is undefined, the current status of the read permission cannot be determined at the moment.

    Methods

    • Function being called when this action is triggered.

      Returns void | PromiseLike<void>

    • Optionally, render additional components to provide dynamic value updates.

      Returns ReactNode