Restructure folder

This commit is contained in:
Mike Conrad
2025-06-11 19:03:54 -04:00
parent 87e8758e40
commit fe46579aaa
11 changed files with 8 additions and 5 deletions

View File

@ -0,0 +1,12 @@
/* eslint-disable no-console */
// #region snippet
// Inside ./snippets/external.ts
export function emptyArray<T>(length: number) {
return Array.from<T>({ length })
}
// #endregion snippet
export function sayHello() {
console.log('Hello from snippets/external.ts')
}