jakke-graphics-ts
    Preparing search index...

    Type Alias ActionResult<T>

    Object for getting the result of running action. If the result is failed, its reason would be given as message.

    type ActionResult<T = any> = {
        args?: T;
        hasError?: boolean;
        message?: string;
        result: boolean;
    }

    Type Parameters

    • T = any
    Index

    Properties

    args?: T
    hasError?: boolean
    message?: string
    result: boolean