Add missing timeago declaration

This commit is contained in:
Jannis Mattheis 2018-04-19 21:09:14 +02:00 committed by Jannis Mattheis
parent 51df6abd81
commit 915f40638b
1 changed files with 10 additions and 0 deletions

10
ui/src/typedef/react-timeago.d.ts vendored Normal file
View File

@ -0,0 +1,10 @@
declare module 'react-timeago' {
import React from "react";
export interface ITimeAgoProps {
date: string
}
export default class TimeAgo extends React.Component<ITimeAgoProps, any> {}
}