Files
dsa/_template/main.ts
naomi 9e7387a281
Node.js CI / Lint and Test (push) Successful in 22s
feat: add template to make my life easier
2025-12-03 10:00:55 -08:00

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 };