typebox-cli
Version:
CLI tool for various TypeBox and JSON Schema operations
14 lines (13 loc) • 551 B
TypeScript
import { Command, OptionValues } from "commander";
import { CodegenOptions as CodegenCodegenOptions } from "./codegen.js";
export declare const program: Command;
export declare const extractCommand: Command;
export declare const extractJsonCommand: Command;
export declare const codgenCommand: Command;
export declare const listModelsCommand: Command;
export interface ExtractionOptions extends OptionValues {
module: string;
export: string;
}
export interface CodegenOptions extends OptionValues, Pick<CodegenCodegenOptions, "modelName"> {
}