Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Add and Or to index.d.ts #876

Merged
merged 2 commits into from
May 1, 2024
Merged

Conversation

ryoppippi
Copy link
Contributor

@ryoppippi ryoppippi commented May 1, 2024

fixes: #877

Before this PR

import { And } from "type-fest"; // 1. Module '"type-fest"' has no exported member 'And'.

type A = And<true,true> // any

After this PR

import { And } from "type-fest";

type A = And<true,true> // true

@sindresorhus sindresorhus merged commit ed860e9 into sindresorhus:main May 1, 2024
8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

And and Or is not exported at index.d.ts
2 participants