Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
18 lines
479 B
Plaintext
18 lines
479 B
Plaintext
import uri, { URIComponents, URIComponent, Options, options } from '..'
|
|
import { expectDeprecated, expectType } from 'tsd'
|
|
|
|
const parsed = uri.parse('foo')
|
|
expectType<URIComponents>(parsed)
|
|
const parsed2 = uri.parse('foo', {
|
|
domainHost: true,
|
|
scheme: 'https',
|
|
unicodeSupport: false
|
|
})
|
|
expectType<URIComponents>(parsed2)
|
|
|
|
expectType<URIComponent>({} as URIComponents)
|
|
expectDeprecated({} as URIComponents)
|
|
|
|
expectType<Options>({} as options)
|
|
expectDeprecated({} as options)
|