* [CAL-1517] fix all Typescript warnings * solve conflicts * Update stripeCheckoutSession.handler.ts Parse is a guard, so even though the variable is unused the parse itself is needed. * Update ToolbarPlugin.tsx Don't change dependency tree --------- Co-authored-by: gitstart-calcom <gitstart@users.noreply.github.com> Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: Alex van Andel <me@alexvanandel.com>
11 lines
382 B
TypeScript
11 lines
382 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
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
SendgridService as any,
|
|
];
|
|
|
|
export default services;
|