furystack-core
Version:
FuryStack framework, Core package
13 lines (12 loc) • 618 B
TypeScript
import { DescriptorEntryType } from "./DescriptorEntryType";
import { ForeignKeyDescriptorEntry } from "./ForeignKeyDescriptorEntry";
import { ODataPropertyDesrciptorEntry } from "./ODataPropertyDescriptorEntry";
import { PrimaryKeyDescriptorEntry } from "./PrimaryKeyDescriptorEntry";
export declare class ModelDescriptor {
Object: any;
entries: DescriptorEntryType[];
constructor(object: any, entries: DescriptorEntryType[]);
readonly PrimaryKey: PrimaryKeyDescriptorEntry;
readonly Properties: ODataPropertyDesrciptorEntry[];
readonly ForeignKeys: ForeignKeyDescriptorEntry[];
}