model-metadata.ts 163 B

1234567
  1. export interface OdooModelMetadata {
  2. readonly target: Function | string;
  3. readonly name: string;
  4. readonly domain: any;
  5. readonly document: string;
  6. }