| 1 | /* eslint-disable no-console */ |
| 2 | |
| 3 | // #region snippet |
| 4 | // Inside ./snippets/external.ts |
| 5 | export function emptyArray<T>(length: number) { |
| 6 | return Array.from<T>({ length }) |
| 7 | } |
| 8 | // #endregion snippet |
| 9 | |
| 10 | export function sayHello() { |
| 11 | console.log('Hello from snippets/external.ts') |
| 12 | } |
| 13 |