Interface AsukaMutationResult<T>

interface AsukaMutationResult<T> {
    changed: boolean;
    engine: AsukaRenderEngineKind;
    id?: null | string;
    ok: true;
    operation: string;
    value: T;
}

Type Parameters

  • T = undefined

Properties

changed: boolean
id?: null | string
ok
operation: string
value: T