1
mirror of https://github.com/jakejarvis/npm-module-template.git synced 2026-06-29 18:55:58 -04:00

initial commit 🎉

This commit is contained in:
2021-08-30 19:46:22 -04:00
commit 1cbe2b4758
11 changed files with 4278 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
export function something(): void;
+5
View File
@@ -0,0 +1,5 @@
const something = function () {
console.info("well hello there");
};
export { something };