furystack-core
Version:
FuryStack framework, Core package
6 lines (5 loc) • 340 B
TypeScript
import { ForeignKeyDescriptorEntry } from "./ForeignKeyDescriptorEntry";
export declare function isForeignKeyDescriptorEntry(descriptor: any): descriptor is ForeignKeyDescriptorEntry;
export declare function ForeignKey<T>(foreignClassType: {
new (): T;
}, foreignKeyFieldName: string): (target: any, propertyName: string) => void;