osr-discourse/commands/sync-component.d.ts
2024-06-29 21:53:26 +02:00

59 lines
982 B
TypeScript

import * as CLI from 'yargs';
import { IOptionsSyncComponent } from '../types';
export declare const parse: (argv: any) => IOptionsSyncComponent | boolean;
export declare const register: (cli: CLI.Argv) => CLI.Argv<{
debug: boolean;
} & {
verbose: boolean;
} & {
alt: boolean;
} & {
yaml: boolean;
} & {
skip: boolean;
} & {
uploadLocal: boolean;
} & {
uploadRemote: boolean;
} & {
title: string;
} & {
cat: number;
} & {
timestamp: number;
} & {
owner: number;
} & {
config: string;
} & {
src: string;
} & {
src2: string;
} & {
env: string;
} & {
profile: string;
} & {
format: string;
} & {
source: string;
} & {
language: string;
} & {
plugins: string;
} & {
root: string;
} & {
product_root: string;
} & {
cwd: string;
} & {
module: string;
} & {
filter: string;
} & {
cache: boolean;
} & {
env_key: string;
}>;