TableBeforeWriteContext

View Source

Summary

Context passed to the beforeWrite hook.

Signature

type TableBeforeWriteContext<row> = {
  operation: TableWriteOperation;
  tableName: string;
  value: Partial<row>;
};