export interface ServiceProperties { url: string; } export abstract class Service implements ServiceProperties { public url: string; /** * Cannot be constructed. */ protected constructor() {} }