/// import { Url } from "url"; declare namespace gh { interface Result extends Url { filepath: string | null; owner: string | null; name: string | null; repo: string | null; repository: string | null; branch: string; } } declare function gh(url: string): gh.Result | null; export = gh;