Initial commit
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
## temp-file
|
||||
|
||||
```typescript
|
||||
export function getTempName(prefix?: string | null | undefined): string;
|
||||
|
||||
export class TmpDir {
|
||||
getTempDir(suffix?: string): Promise<string>;
|
||||
|
||||
createTempDir(suffix?: string): Promise<string>;
|
||||
|
||||
getTempFile(suffix: string, isDir?: boolean, disposer?: ((file: string) => Promise<void>) | null): Promise<string>;
|
||||
|
||||
cleanupSync(): void;
|
||||
|
||||
cleanup(): Promise<any>;
|
||||
}
|
||||
```
|
||||
Reference in New Issue
Block a user