nav-connect
Version:
Nav Online Invoice connection module
13 lines (12 loc) • 344 B
TypeScript
export declare function parseDateTimeInterval(interval: {
dateTimeFrom: string;
dateTimeTo: string;
}, label: string): {
from: Date;
to: Date;
};
export declare function assertRangeWithinLimit(from: Date, to: Date): void;
export declare function buildDigestChunks(from: Date, to: Date): {
from: string;
to: string;
}[];