import Project from './project' class Website extends Project { constructor (ownerGitlabId: number, name: string, desc: string, id?: number, logo?: string, path?: string) { super(ownerGitlabId, name, desc, id, logo, path) } } export = Website