import { Price } from './price'; import { ServiceTypes } from './service-types'; export interface Service { comments?: string; price?: Price; type: ServiceTypes; }