packages/db/src/Observe/Action.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type Action<T = unknown> =
  | {
      type: "insert";
      instance: T;
    }
  | {
      type: "update";
      instance: T;
    }
  | {
      type: "remove";
      instance: T;
    };