We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Fancybox.d.ts contains static getInstance(id?: number): Fancybox | null;
static getInstance(id?: number): Fancybox | null;
while Options.d.ts types id as string | number
id
string | number
Types issue
No response
The text was updated successfully, but these errors were encountered:
In addition, maybe Images.content option should allow for undefined return value. Currently, it's content?: (instance: Images, slide: slideType) => string | HTMLElement | HTMLPictureElement;, making it content?: (instance: Images, slide: slideType) => string | HTMLElement | HTMLPictureElement | undefined; would make sense.
content?: (instance: Images, slide: slideType) => string | HTMLElement | HTMLPictureElement;
content?: (instance: Images, slide: slideType) => string | HTMLElement | HTMLPictureElement | undefined;
Sorry, something went wrong.
slideType doesn't have iframeAttr, but it works and in docs
slideType
iframeAttr
No branches or pull requests
Describe the bug
Fancybox.d.ts contains
static getInstance(id?: number): Fancybox | null;
while Options.d.ts types
id
asstring | number
Reproduction
Types issue
Additional context
No response
The text was updated successfully, but these errors were encountered: