unknown-ts
v0.1.0
Published
A polyfill of unknown that works with legacy typescript versions (before 3.0)
Downloads
177
Readme
A polyfill of unknown
that works with legacy typescript versions (before 3.0)
export type mixed = { [key: string]: any } | object | number | string | boolean | symbol | undefined | null | void
declare global {
type unknown = mixed
}