UNPKG

@aliretail/react-materials-components

Version:
14 lines (13 loc) 353 B
import * as React from 'react'; interface Value { type?: number; time?: number; unit?: string; } export interface TimeoutTypeProps { name?: string; value?: Value; onChange?: (v: Value) => void; } declare const TimeoutType: React.ForwardRefExoticComponent<TimeoutTypeProps & React.RefAttributes<any>>; export default TimeoutType;