generated from nhcarrigan/template
17 lines
260 B
TypeScript
17 lines
260 B
TypeScript
/**
|
|
* @copyright NHCarrigan
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
|
|
/**
|
|
* Does a thing.
|
|
* @returns The result of the thing.
|
|
* @see https://nhcarrigan.com
|
|
*/
|
|
const doThing = (): boolean => {
|
|
return true;
|
|
};
|
|
|
|
export { doThing };
|