This commit is contained in:
2025-10-25 20:59:50 +08:00
commit 8cc4065273
18 changed files with 15121 additions and 0 deletions

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')
}