mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
13 lines
243 B
TypeScript
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;
|
|
}
|