From b2e4529a47e5c8f94a8641bb4b7df3e4a70163ce Mon Sep 17 00:00:00 2001 From: Hugo Josefson Date: Sun, 27 Oct 2024 11:10:29 +0100 Subject: [PATCH] docs: add module doc for main module --- mod.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mod.ts b/mod.ts index dcacbf1..14812c4 100644 --- a/mod.ts +++ b/mod.ts @@ -1,3 +1,9 @@ +/** + * @module + * This module exports the {@link run} function and its varieties, and the types + * that they use. + */ + export { run } from "./src/run.ts"; export type { RunOptions } from "./src/run.ts"; export type { CommandFailure } from "./src/run.ts";