forked from mirrors/thatmattlove-hyperglass
12 lines
243 B
TypeScript
12 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;
|
|
}
|