import { WithMongooseProps } from "./with-mongoose-props"; import { WithTenantProps } from "./with-tenant-props"; import { WithTranslations } from "./with-translations"; export type Faq = WithMongooseProps< WithTenantProps<{ question: string; answer: string; orderPosition: number; translations: WithTranslations<{ question: string; answer: string; }>; }> >;