From 00c4507f9e01f08d550860e57317987accf5c5ee Mon Sep 17 00:00:00 2001 From: Betim Beja <11160171+BetimBeja@users.noreply.github.com> Date: Fri, 21 Apr 2023 00:58:19 +0200 Subject: [PATCH] Typescript Typings Fixed a capitalization typing for `Checkbox`. It was being exported as `Checkbox` but typed as `CheckBox` in the index.d.ts and my IDE was complaining about this and I had to use a `@ts-ignore` --- src/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.d.ts b/src/index.d.ts index 6f526b9..ad2c496 100644 --- a/src/index.d.ts +++ b/src/index.d.ts @@ -107,7 +107,7 @@ declare module 'galio-framework' { labelStyle?: TextStyle; onChange?: () => void; } - export class CheckBox extends React.Component {} + export class Checkbox extends React.Component {} export interface DeckSwiperProps extends BaseProps { style?: ViewStyle;