export interface Source { name : string, type : string, generated? : boolean, pascal : string, camel : string } export interface StringFormatSourceRaw { name : string, cast : string, generated? : boolean } export interface StringFormatSource extends Source { basicName : string, cast : string, generated : boolean }