| 12345678910111213141516171819202122232425262728 |
- import {RelationDefinition} from './relations';
- import {PropertyDefinition} from './properties';
- /**
- * Property definition map.
- */
- export declare type PropertyDefinitionMap = {
- [name: string]: PropertyDefinition;
- };
- /**
- * Relation definition map.
- */
- export declare type RelationDefinitionMap = {
- [name: string]: RelationDefinition;
- };
- /**
- * Model definition.
- */
- export declare type ModelDefinition = {
- name: string;
- datasource?: string;
- base?: string;
- tableName?: string;
- properties?: PropertyDefinitionMap;
- relations?: RelationDefinitionMap;
- };
|