siegel
Version:
Web application development ecosystem
11 lines (10 loc) • 384 B
TypeScript
import type { Component, Props } from './types';
declare const componentID = "-ui-clocks";
declare const Clocks: import("../_internals/types").CoreUIComponent<Props, NonNullableProps<{
speedCoef: Props["speedCoef"];
tickEveryMinute: Props["tickEveryMinute"];
zeroing: Props["zeroing"];
}>>;
export default Clocks;
export { componentID };
export type { Component, Props };