2024-10-workshop-talk-five-.../snippets/external.ts

13 lines
273 B
TypeScript
Raw Permalink Normal View History

2024-10-04 15:45:04 +02:00
/* 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')
}