43 lines
672 B
TypeScript
43 lines
672 B
TypeScript
import * as CLI from 'yargs';
|
|
export declare const register: (cli: CLI.Argv) => CLI.Argv<CLI.Omit<{
|
|
debug: boolean;
|
|
} & {
|
|
verbose: boolean;
|
|
} & {
|
|
yaml: boolean;
|
|
} & {
|
|
alt: boolean;
|
|
} & {
|
|
uploadLocal: boolean;
|
|
} & {
|
|
uploadRemote: boolean;
|
|
} & {
|
|
src: string;
|
|
} & {
|
|
title: string;
|
|
} & {
|
|
config: string;
|
|
} & {
|
|
cat: number;
|
|
} & {
|
|
timestamp: number;
|
|
} & {
|
|
owner: number;
|
|
}, "config"> & {
|
|
config: string;
|
|
} & {
|
|
env: string;
|
|
} & {
|
|
profile: string;
|
|
} & {
|
|
format: string;
|
|
} & {
|
|
root: string;
|
|
} & {
|
|
cwd: string;
|
|
} & {
|
|
cache: boolean;
|
|
} & {
|
|
env_key: string;
|
|
}>;
|