skedify-types
Version:
11 lines • 341 B
TypeScript
import { Calendar, Employee, SyncAccount } from ".";
export interface WithSyncAccounts<T = unknown> {
sync_accounts: (SyncAccount & T)[];
}
export interface WithCalendars<T = unknown> {
calendars: (Calendar & T)[];
}
export interface WithEmployees<T = unknown> {
employees: (Employee & T)[];
}
//# sourceMappingURL=users.d.ts.map