@canes/ecb-tas-feature
Version:
13 lines (12 loc) • 358 B
TypeScript
export interface ISyncDataStatus {
date: Date;
external: number;
internal: number;
}
declare function syncStatus(year: number, month: number): Promise<ISyncDataStatus[]>;
declare function sync(date: Date): Promise<unknown>;
declare const service: {
syncStatus: typeof syncStatus;
sync: typeof sync;
};
export default service;