@codecovevienna/gittt-cli
Version:
Tracking time with CLI into a git repository
30 lines (26 loc) • 625 B
text/typescript
export interface IJiraPublishResult {
success: boolean;
data?: any;
message?: string;
}
export interface IMultipiePublishResult {
success: boolean;
data?: any;
message?: string;
}
export interface IMultipieRole {
role: string,
// format: 2021-01-01
/* that's the hurdle talking to python... */
/* eslint-disable @typescript-eslint/naming-convention */
start_date: string,
end_date: string,
/* eslint-enable @typescript-eslint/naming-convention */
// actually a float
factor: string
}
export interface IMultipieRolesResult {
success: boolean;
data?: IMultipieRole[];
message?: string;
}