skysync-cli
Version:
SkySync Command Line Interface
31 lines (30 loc) • 650 B
TypeScript
export declare const outputFormatID: {
table: {
header: string;
property: string;
}[];
};
export declare const outputFormat: {
table: ({
header: string;
property: string;
} | {
header: string;
property: string;
transform: (val: any) => boolean;
})[];
};
export declare const outputFormatWithGroup: {
table: {
header: string;
property: string;
}[];
json: string[];
};
export declare const outputFormatWithGroupAndRoles: {
table: {
header: string;
property: string;
}[];
json: string[];
};