svelte-ux
Version:
- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`
36 lines (35 loc) • 974 B
TypeScript
import { SvelteComponentTyped } from "svelte";
export declare const groupKey: {};
declare const __propDef: {
props: {
[x: string]: any;
value?: any;
autoscroll?: boolean;
contained?: boolean;
underlined?: boolean;
vertical?: boolean;
circle?: boolean;
classes?: {
root?: string;
options?: string;
optionContainer?: string;
option?: string;
indicator?: string;
};
};
events: {
change: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
panes: {};
};
};
export type ToggleGroupProps = typeof __propDef.props;
export type ToggleGroupEvents = typeof __propDef.events;
export type ToggleGroupSlots = typeof __propDef.slots;
export default class ToggleGroup extends SvelteComponentTyped<ToggleGroupProps, ToggleGroupEvents, ToggleGroupSlots> {
}
export {};