react-native-timeago icon indicating copy to clipboard operation
react-native-timeago copied to clipboard

TimeAgo Props extends TextProps

Open duccio opened this issue 3 years ago • 0 comments

Hi! 👋

Firstly, thanks for your work on this project! 🙂

Today I used patch-package to patch [email protected] for the project I'm working on.

To use "style" prop, for example, in TypeScript we need to extends TextProps.

Here is the diff that solved my problem:

diff --git a/node_modules/react-native-timeago/index.d.ts b/node_modules/react-native-timeago/index.d.ts
index 9836bc6..bf18e3a 100644
--- a/node_modules/react-native-timeago/index.d.ts
+++ b/node_modules/react-native-timeago/index.d.ts
@@ -1,6 +1,7 @@
 import * as React from 'react';
+import { TextProps } from 'react-native';
 
-export interface Props {
+export interface Props extends TextProps {
     time: string | number | Array<any> | Date;
     interval?: number;
     hideAgo?: boolean;

This issue body was partially generated by patch-package.

duccio avatar Aug 04 '22 09:08 duccio