@dipscope/type-manager
Version:
Transform JSON strings or plain objects into JS class instances.
16 lines • 347 B
TypeScript
/**
* Represents naming convention.
*
* @type {NamingConvention}
*/
export interface NamingConvention {
/**
* Converts name from provided to target one.
*
* @param {string} name Name.
*
* @returns {string} Converted name.
*/
convert(name: string): string;
}
//# sourceMappingURL=naming-convention.d.ts.map