* Enforces explicit type imports * Upgrades typescript-eslint * Upgrades eslint related dependencies * Update config * Sync packages mismatches * Syncs prettier version * Linting * Relocks node version * Fixes * Locks @vitejs/plugin-react to 1.3.2 * Linting
10 lines
310 B
TypeScript
10 lines
310 B
TypeScript
import type { ISyncServices } from "../ISyncService";
|
|
import SendgridService from "./SendgridService";
|
|
|
|
const services: ISyncServices[] = [
|
|
//CloseComService, This service gets a special treatment after deciding it shouldn't get the same treatment as Sendgrid
|
|
SendgridService,
|
|
];
|
|
|
|
export default services;
|