UNPKG

logic-bind-model

Version:
17 lines (13 loc) 250 B
import type { MetaTable } from 'logic-entity'; /** * Object control interface. */ declare interface IBind { _baseTable: MetaTable; /** * Add Column */ addColumn(): void; } export default IBind; export { IBind };