first commit

This commit is contained in:
jon brookes 2025-08-13 15:48:45 +01:00
parent c884330ca9
commit dcc2f600ae
16 changed files with 9152 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')
}