Skip to content

TimeAgo Props extends TextProps #53

@duccio

Description

@duccio

Hi! 👋

Firstly, thanks for your work on this project! 🙂

Today I used patch-package to patch react-native-timeago@0.5.0 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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions