notex-companion 0.4.0 → 0.5.0

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.
package/dist/cli.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import { CliUsageError } from "./cliErrors.js";
2
+ import type { ServeHandle } from "./serve.js";
2
3
  export { CliUsageError };
3
4
  export type ServeArgs = {
4
5
  port: number | undefined;
@@ -6,4 +7,7 @@ export type ServeArgs = {
6
7
  rotateToken: boolean;
7
8
  };
8
9
  export declare function parseServeArgs(args: Array<string>): ServeArgs;
10
+ /** The role/registration line printed right before the shared pairing line (TBR-138's
11
+ * resolution) — every process prints the *same* pairing line beneath this regardless of role. */
12
+ export declare function roleLine(handle: ServeHandle): string;
9
13
  export declare function main(argv?: Array<string>): void;