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