sim 2.1.8-dev.94.1 → 2.1.8-dev.95.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,5 @@
1
+ /** Only CLI-owned output enters the invocation result; host logs retain their normal sinks. */
2
+ export declare function printLine(...args: unknown[]): void;
3
+ export declare function printError(...args: unknown[]): void;
4
+ export declare function writeStdout(chunk: string | Uint8Array): boolean;
5
+ export declare function writeStderr(chunk: string | Uint8Array): boolean;
@@ -1,17 +1,3 @@
1
- /**
2
- * Support for spellings the CLI has moved on from.
3
- *
4
- * A rename is not an alias. {@link CommandSpec.aliases} are ergonomic shorthands
5
- * — `ls`, `mv` — that the CLI wants people to use, so they appear in help. A
6
- * renamed spelling is kept only so a script written against the old name keeps
7
- * working: it stays out of help and out of the generated docs, and says once,
8
- * on stderr, what to write instead.
9
- *
10
- * Warnings go to stderr rather than stdout because the old name is most likely
11
- * to survive inside exactly the kind of script that pipes stdout into `jq`, and
12
- * a deprecation notice in the middle of a JSON document is a worse bug than the
13
- * one it reports.
14
- */
15
1
  /** Announces a command path that has been renamed, naming its current spelling. */
16
2
  export declare function warnRenamedCommand(from: string, to: string): void;
17
3
  /** Announces a flag that has been renamed, naming its current spelling. */