Upakovka v Electron.JS no po staroy sborke cherez .cjs

This commit is contained in:
Neyra
2026-02-10 19:19:41 +08:00
parent 8e9b7201ed
commit a1bba1d3d1
442 changed files with 19825 additions and 47462 deletions

View File

@@ -1,10 +1,14 @@
export interface Options {
/**
The stream to check.
/// <reference types="node"/>
@default process.stdout
*/
readonly stream?: NodeJS.WritableStream;
declare namespace isInteractive {
interface Options {
/**
The stream to check.
@default process.stdout
*/
readonly stream?: NodeJS.WritableStream;
}
}
/**
@@ -16,10 +20,12 @@ This can be useful to decide whether to present interactive UI or animations in
@example
```
import isInteractive from 'is-interactive';
import isInteractive = require('is-interactive');
isInteractive();
//=> true
```
*/
export default function isInteractive(options?: Options): boolean;
declare function isInteractive(options?: isInteractive.Options): boolean;
export = isInteractive;