interface CodeExecutionResult {
    error: string | boolean;
    name: string;
    result: any;
}

Properties

Properties

error: string | boolean
name: string
result: any