Skip to content

Home > @theweave/api > CreatableResult

CreatableResult type

Signature:

typescript
export type CreatableResult = {
    type: 'success';
    wal: WAL;
} | {
    type: 'cancel';
} | {
    type: 'error';
    reason: any;
};

References: WAL