mirror of
https://github.com/sern-handler/website
synced 2026-06-21 23:32:22 +00:00
7 lines
221 B
TypeScript
7 lines
221 B
TypeScript
import type yargs from 'yargs-parser';
|
|
interface DocsOptions {
|
|
flags: yargs.Arguments;
|
|
}
|
|
export declare function docs({ flags }: DocsOptions): Promise<import("execa").ExecaReturnValue<string> | undefined>;
|
|
export {};
|