skedify-types
Version:
14 lines (10 loc) • 303 B
text/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)[];
}