browsirai 0.1.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 ADDED
@@ -0,0 +1,8 @@
1
+ /**
2
+ * CLI dispatcher for the `browsirai` command.
3
+ *
4
+ * Uses dynamic imports so that modules can be mocked in tests via `vi.doMock`.
5
+ */
6
+ declare function runCli(args: string[]): Promise<void>;
7
+
8
+ export { runCli };