slider.d.ts 240 B

123456789
  1. import { GuideComponentComponent as GCC } from '../runtime';
  2. export type SliderOptions = {
  3. orientation: 'horizontal' | 'vertical';
  4. [key: string]: any;
  5. };
  6. /**
  7. * Slider component.
  8. */
  9. export declare const Slider: GCC<SliderOptions>;