You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
): maybeCollection is Collection<unknown,unknown>{
21
+
): maybeCollection is CollectionImpl<unknown,unknown>{
22
22
returnBoolean(
23
23
maybeCollection&&
24
24
// @ts-expect-error: maybeCollection is typed as `{}`, need to change in 6.0 to `maybeCollection && typeof maybeCollection === 'object' && IS_COLLECTION_SYMBOL in maybeCollection`
): maybeIndexed is IndexedCollectionImpl<unknown>{
22
22
returnBoolean(
23
23
maybeIndexed&&
24
24
// @ts-expect-error: maybeIndexed is typed as `{}`, need to change in 6.0 to `maybeIndexed && typeof maybeIndexed === 'object' && IS_INDEXED_SYMBOL in maybeIndexed`
): maybeKeyed is Collection.Keyed<unknown,unknown>{
20
+
): maybeKeyed is KeyedCollectionImpl<unknown,unknown>{
21
21
returnBoolean(
22
22
maybeKeyed&&
23
23
// @ts-expect-error: maybeKeyed is typed as `{}`, need to change in 6.0 to `maybeKeyed && typeof maybeKeyed === 'object' && IS_KEYED_SYMBOL in maybeKeyed`
0 commit comments