ph-dev-tools
Version:
Development Tools for PHibernate
19 lines (18 loc) • 338 B
TypeScript
/**
* Created by Papa on 4/24/2016.
*/
export interface Configuration {
cacheGeneratedPaths: boolean;
generated: {
client?: Sources;
java?: Sources;
};
source: Origin;
}
export interface Sources {
dir?: string;
generate: boolean;
}
export interface Origin {
dir?: string;
}