oak-domain/lib/compiler/schemalBuilder.d.ts

12 lines
740 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export declare function registerIgnoredForeignKeyMap(map: Record<string, string[]>): void;
export declare function registerSelectFreeEntities(entities: string[]): void;
export declare function registerIgnoredRelationPathMap(map: Record<string, string[]>): void;
/**
* 很多路径虽然最后指向同一对象但不能封掉封了会导致查询的时候找不到对应的路径path
* @param map
*/
export declare function registerFixedDestinationPathMap(map: Record<string, string[]>): void;
export declare function registerDeducedRelationMap(map: Record<string, string>): void;
export declare function analyzeEntities(inputDir: string, relativePath?: string): void;
export declare function buildSchema(outputDir: string): void;