Skip to content

How to create CustomSlide in TypeScript? #47

Answered by igordanchenko
cecbr asked this question in Q&A
Discussion options

You must be logged in to vote

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:

  1. You need to cast the custom slide type string as const to make TypeScript happy:
const slides = [
  {
    type: "custom-slide" as const,
    // slide attributes
  }
]
  1. Since you are adding type declarations …

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by igordanchenko
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants