@codecovevienna/gittt-cli
Version:
Tracking time with CLI into a git repository
10 lines (9 loc) • 514 B
TypeScript
import { IRecord } from "../interfaces";
export declare class RecordHelper {
static isRecordUnique: (record: IRecord, records: IRecord[]) => boolean;
static isRecordOverlapping: (record: IRecord, records: IRecord[]) => boolean;
static setRecordDefaults: (record: IRecord) => IRecord;
static filterRecordsByYear(records: IRecord[]): Promise<IRecord[]>;
static filterRecordsByMonth(records: IRecord[]): Promise<IRecord[]>;
static filterRecordsByDay(records: IRecord[]): Promise<IRecord[]>;
}