import uri, { URIComponents, URIComponent, Options, options } from ".."; import { expectDeprecated, expectType } from "tsd"; const parsed = uri.parse("foo"); expectType(parsed); const parsed2 = uri.parse("foo", { domainHost: true, scheme: 'https', unicodeSupport: false }) expectType(parsed2); expectType({} as URIComponents) expectDeprecated({} as URIComponents) expectType({} as options) expectDeprecated({} as options)