Skip to content

Commit

Permalink
Update types.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Mesteery committed Oct 11, 2021
1 parent 0416700 commit 1bf68f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typings/internalBinding/types.d.ts
Expand Up @@ -9,7 +9,7 @@ declare function InternalBinding(binding: 'types'): {
isExternal(value: unknown): value is Object,
isMap(value: unknown): value is Map<unknown, unknown>,
isMapIterator: (value: unknown) => value is IterableIterator<unknown>,
isModuleNamespaceObject: (value: unknown) => value is {[Symbol.toStringTag]: 'Module', [key: string]: any},
isModuleNamespaceObject: (value: unknown) => value is { [Symbol.toStringTag]: 'Module' },
isNativeError: (value: unknown) => Error,
isPromise: (value: unknown) => value is Promise<unknown>,
isSet: (value: unknown) => value is Set<unknown>,
Expand Down

0 comments on commit 1bf68f3

Please sign in to comment.