lookingglass/hyperglass/ui/components/CacheTimeout/CacheTimeout.d.ts
2020-11-03 01:51:41 -07:00

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;
}