How to create CustomSlide in TypeScript? #47
-
I followed all the steps to create a CustomSlider in typescript but it doesn't work. I created a ".d.ts" file as it was in the documentation: interface CustomSlide {
type: "custom-slide";
// slide attributes
}
declare module "yet-another-react-lightbox" {
interface SlideTypes {
CustomSlide: CustomSlide;
}
} Do you have an example of how to do this? Thanks for any help. |
Beta Was this translation helpful? Give feedback.
Answered by
igordanchenko
Dec 19, 2022
Replies: 1 comment
-
v3 UPDATE import { GenericSlide } from "yet-another-react-lightbox";
declare module "yet-another-react-lightbox" {
export interface CustomSlide extends GenericSlide {
text: string;
}
interface SlideTypes {
"custom-slide": CustomSlide;
}
} Complete example - https://codesandbox.io/s/yet-another-react-lightbox-47-v3-oc7s4h?file=/src/App.tsx Here is a working example - https://codesandbox.io/s/yet-another-react-lightbox-47-wwqj1k There are 2 caveats to keep in mind:
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
igordanchenko
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
v3 UPDATE
Complete example - https://codesandbox.io/s/yet-another-react-lightbox-47-v3-oc7s4h?file=/src/App.tsx
Here is a working example - https://codesandbox.io/s/yet-another-react-lightbox-47-wwqj1k
There are 2 caveats to keep in mind: