An error occurred while loading the file. Please try again.
repo.ts 247 bytes
import Project from './project'
class Repo extends Project {
  constructor (ownerGitlabId: number, name: string, desc: string, id?: number, logo?: string, path?: string) {
    super(ownerGitlabId, name, desc, id, logo, path)
export = Repo