Interface Mutation

interface Mutation {
    id: string & Brand<"Id">;
    isInsert: boolean;
    table: string;
    values: ReadonlyRecord<string,
        | undefined
        | boolean
        | Date
        | Value>;
}

Properties

Properties

id: string & Brand<"Id">
isInsert: boolean
table: string
values: ReadonlyRecord<string,
    | undefined
    | boolean
    | Date
    | Value>