This commit is contained in:
2025-10-26 00:17:36 +08:00
commit 924ce68b76
8 changed files with 5869 additions and 0 deletions

10
snippets/external.ts Normal file
View File

@@ -0,0 +1,10 @@
// #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')
}