fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at feat/use-mutation-hooks 7 lines 152 B view raw
1import fs from 'node:fs'; 2 3import { tmpDir } from './constants'; 4 5export function teardown() { 6 fs.rmSync(tmpDir, { force: true, recursive: true }); 7}