mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 06:49:15 +01:00
10 lines
381 B
TypeScript
10 lines
381 B
TypeScript
import FormCheck, { FormCheckProps } from './FormCheck';
|
|
import { BsPrefixRefForwardingComponent } from './helpers';
|
|
declare type SwitchProps = Omit<FormCheckProps, 'type'>;
|
|
declare type Switch = BsPrefixRefForwardingComponent<FormCheck, SwitchProps> & {
|
|
Input: typeof FormCheck.Input;
|
|
Label: typeof FormCheck.Label;
|
|
};
|
|
declare const Switch: Switch;
|
|
export default Switch;
|