import { EntityDef } from "../types/Entity"; import { StorageSchema } from "../types/Storage"; /** * 判断对象和属性之间的关系 * @param schema * @param entity * @param attr * @param row * @returns */ export declare function judgeRelation(schema: StorageSchema, entity: keyof ED, attr: string): string | 1 | 2 | string[] | 0;