/** * Represents the content of the engine configuration document */ export type EngineContent = { /** * Engine index */ index: string; /** * Engine group */ group: string; /** * Engine name */ name: string; };