skysync-cli
Version:
SkySync Command Line Interface
25 lines (24 loc) • 561 B
TypeScript
export declare const outputFormat: {
table: ({
header: string;
property: string;
transform?: undefined;
} | {
header: string;
property: string;
transform: (val: any) => boolean;
})[];
json: string[];
};
export declare const itemOutputFormat: {
table: ({
header: string;
property: string;
transform?: undefined;
} | {
header: string;
property: string;
transform: (val: any) => string;
})[];
json: string[];
};