UNPKG

cdp-lib

Version:

Contains npm modules used primarily by cdp boilerplate generator.

20 lines (17 loc) 444 B
/** * @class <% sampleClass %> * @brief TODO: */ export default class <% sampleClass %> { /////////////////////////////////////////////////////////////////////// // pubic methods: /** * Cool method * * @param {String} message [in] input message string * @return {String} cool message string */ public static coolMethod(message: string): string { return "Hello cool " + message; } }