ph-dev-tools
Version:
Development Tools for PHibernate
14 lines (13 loc) • 745 B
TypeScript
import { PropertyDocEntry } from "../parser/DocEntry";
/**
* Created by Papa on 4/25/2016.
*/
export interface QBuilder {
build(...args: any[]): string;
}
export declare function getPropertyFieldType(propertyDocEntry: PropertyDocEntry): string;
export declare function getPropertyJSONOperationInterface(propertyDocEntry: PropertyDocEntry): string;
export declare function getPropertyTypedOperationInterface(propertyDocEntry: PropertyDocEntry): string;
export declare function getPropertyFieldInterface(propertyDocEntry: PropertyDocEntry): string;
export declare function getPropertyFieldClass(propertyDocEntry: PropertyDocEntry): string;
export declare function getRelationFieldType(entityProperty: PropertyDocEntry): string;