@grouparoo/core
Version:
The Grouparoo Core
28 lines (27 loc) • 832 B
TypeScript
import { CLI, ParamsFrom } from "actionhero";
export declare class SyncCLI extends CLI {
name: string;
description: string;
inputs: {
readonly property: {
readonly description: "Choose the name of the Property to find the GrouparooRecord by (i.e.: email_address)";
readonly letter: "p";
};
readonly "no-export": {
readonly description: "Skip exporting the record";
readonly letter: "n";
readonly flag: true;
};
};
example: string;
constructor();
preInitialize: () => void;
run({ params, }: {
params: Partial<ParamsFrom<SyncCLI> & {
export?: boolean;
recordProperty?: string;
json?: string;
_arguments: string[];
}>;
}): Promise<boolean>;
}