import { ServiceEnum } from '../../lib/Service/Enum/ServiceEnum'; /** * IService - Represent a service * @param serviceSlug ServiceEnum */ export default interface IService { readonly serviceSlug: ServiceEnum; readonly name: string; readonly secrets: { readonly label: string; readonly value: string; }[]; readonly data: { readonly [key: string]: any; }; }