mirror of
https://github.com/outline/outline.git
synced 2026-04-30 14:39:33 -05:00
8 lines
108 B
TypeScript
8 lines
108 B
TypeScript
import "sequelize";
|
|
|
|
declare module "sequelize" {
|
|
interface Transaction {
|
|
parent?: Transaction;
|
|
}
|
|
}
|