| 12345678910111213141516 |
- import { GUI } from '../../core';
- import type { Group } from '../../shapes';
- import type { SwitchOptions, SwitchStyleProps } from './types';
- export type { SwitchStyleProps, SwitchOptions };
- export declare class Switch extends GUI<SwitchStyleProps> {
- /**
- * 组件 switch
- */
- static tag: string;
- /**
- * 开关
- */
- private checked;
- constructor(options: SwitchOptions);
- render(attributes: Required<SwitchStyleProps>, container: Group): void;
- }
|