7 lines
199 B
TypeScript
7 lines
199 B
TypeScript
import type { Flags } from '../flags.js';
|
|
interface DocsOptions {
|
|
flags: Flags;
|
|
}
|
|
export declare function docs({ flags }: DocsOptions): Promise<import("tinyexec").Output | undefined>;
|
|
export {};
|