1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
2020-11-03 01:51:41 -07:00

13 lines
243 B
TypeScript

namespace ReactCountdown {
type CountdownRender = import('react-countdown').CountdownRenderProps;
}
interface IRenderer extends ReactCountdown.CountdownRender {
text: string;
}
interface ICountdown {
timeout: number;
text: string;
}