ActionResponse

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

Usage

import {ActionResponse} from 'uxp/components';

Last updated