UNPKG

ph-dev-tools

Version:
19 lines (18 loc) 338 B
/** * 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; }