mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
5 lines
239 B
TypeScript
5 lines
239 B
TypeScript
import fs from 'fs/promises'
|
|
import { globalApis } from '../src/constants'
|
|
|
|
await fs.writeFile('global.d.ts', `declare global {\n${globalApis.map(i => ` const ${i}: typeof import('vitest')['${i}']`).join('\n')}\n}\nexport {}\n`, 'utf-8')
|