ActionResponse

Definition

interface ActionResponse {
    status: 'done' | 'error' | 'no-change',
    message?: string,
    data?: any
}

Usage

import { ActionResponse } from 'uxp/components';

Last updated