Initial commit

This commit is contained in:
Mike Conrad
2025-06-08 10:02:37 -04:00
commit b1a5fff476
12 changed files with 5323 additions and 0 deletions

12
snippets/external.ts Normal file
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')
}