hono-decks 0.2.0 → 0.2.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.
- package/dist/advanced.d.ts +603 -46
- package/dist/advanced.js +2011 -1907
- package/dist/bin.d.ts +1 -1
- package/dist/bin.js +1763 -1910
- package/dist/cli.d.ts +16 -15
- package/dist/cli.js +1766 -1915
- package/dist/client.d.ts +14 -8
- package/dist/client.js +13 -16
- package/dist/mod.d.ts +512 -27
- package/dist/mod.js +797 -759
- package/dist/node.d.ts +670 -111
- package/dist/node.js +3756 -3937
- package/dist/vite.d.ts +8 -8
- package/dist/vite.js +1646 -1805
- package/package.json +3 -3
- package/dist/define-decks-U4NxIs66.d.ts +0 -587
- package/dist/jsx-renderer-BO-N4tMZ.d.ts +0 -20
package/dist/cli.d.ts
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
|
+
//#region src/node/cli.d.ts
|
|
1
2
|
interface RunHonoDecksCliInput {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
3
|
+
argv: string[];
|
|
4
|
+
cwd: string;
|
|
5
|
+
stdout?: (line: string) => void;
|
|
6
|
+
stderr?: (line: string) => void;
|
|
7
|
+
/** Stops a long-running `compile --watch` command. */
|
|
8
|
+
signal?: AbortSignal;
|
|
9
|
+
/** Test/tooling hook for filesystem watching. */
|
|
10
|
+
watchFileSystem?(path: string, options: {
|
|
11
|
+
recursive: boolean;
|
|
12
|
+
}, listener: (eventType: "rename" | "change", filename: string | null) => void): {
|
|
13
|
+
close(): void;
|
|
14
|
+
};
|
|
14
15
|
}
|
|
15
16
|
interface RunHonoDecksCliResult {
|
|
16
|
-
|
|
17
|
+
exitCode: number;
|
|
17
18
|
}
|
|
18
19
|
declare function runHonoDecksCli(input: RunHonoDecksCliInput): Promise<RunHonoDecksCliResult>;
|
|
19
|
-
|
|
20
|
-
export { type RunHonoDecksCliInput, type RunHonoDecksCliResult, runHonoDecksCli };
|
|
20
|
+
//#endregion
|
|
21
|
+
export { type RunHonoDecksCliInput, type RunHonoDecksCliResult, runHonoDecksCli };
|