Skip to content

Commit

Permalink
fixed types issue
Browse files Browse the repository at this point in the history
  • Loading branch information
prabha-likeminds committed Dec 18, 2023
1 parent c94c8af commit 4a28bf8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions LMFeed-UI/base/LMInputText/types.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// @ts-ignore the lib do not have TS declarations yet
import type {Change} from 'diff';
import type {ReactNode, Ref} from 'react';
import type {
Expand Down
2 changes: 2 additions & 0 deletions LMFeed-UI/base/LMInputText/utils.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// @ts-ignore the lib do not have TS declarations yet
import {diffChars} from 'diff';
import {StyleProp, TextStyle} from 'react-native';
// @ts-ignore the lib do not have TS declarations yet
import matchAll from 'string.prototype.matchall';
import {
CharactersDiffChange,
Expand Down
1 change: 1 addition & 0 deletions LMFeed-UI/components/LMMedia/LMVideo/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import {
Image,
} from 'react-native';
import React, {useState} from 'react';
// @ts-ignore the lib do not have TS declarations yet
import Video from 'react-native-video';
import {LMVideoProps} from './types';
import LMLoader from '../../../base/LMLoader';
Expand Down

0 comments on commit 4a28bf8

Please sign in to comment.