core3-utils

@wixc3/common on Github

Home > @wixc3/common > NotIterable

NotIterable type

Signature:

export type NotIterable<T> = T extends Iterable<unknown> ? never : T;