repo.ts 247 Bytes
Newer Older
Rosanny Sihombing's avatar
Rosanny Sihombing committed
1
2
3
4
5
6
7
8
9
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