svelty-material
Version:
Svelte Materialify fork with ts support and updated scss.
42 lines (41 loc) • 2.41 kB
TypeScript
import { SvelteComponentTyped } from "svelte";
import { slide } from 'svelte/transition';
declare const __propDef: {
props: {
class?: string | undefined;
activatorClass?: string | undefined;
activatorProps?: {} | undefined;
active?: boolean | undefined;
eager?: boolean | undefined;
transition?: typeof slide | undefined;
transitionOpts?: {} | undefined;
offset?: number | null | undefined;
disabled?: boolean | undefined;
ripple?: {} | undefined;
style?: string | undefined;
};
events: {
introstart: TouchEvent | UIEvent | Event | MouseEvent | KeyboardEvent | TransitionEvent | ProgressEvent<EventTarget> | ClipboardEvent | AnimationEvent | InputEvent | FocusEvent | CompositionEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | SecurityPolicyViolationEvent | SubmitEvent | WheelEvent;
outrostart: TouchEvent | UIEvent | Event | MouseEvent | KeyboardEvent | TransitionEvent | ProgressEvent<EventTarget> | ClipboardEvent | AnimationEvent | InputEvent | FocusEvent | CompositionEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | SecurityPolicyViolationEvent | SubmitEvent | WheelEvent;
introend: TouchEvent | UIEvent | Event | MouseEvent | KeyboardEvent | TransitionEvent | ProgressEvent<EventTarget> | ClipboardEvent | AnimationEvent | InputEvent | FocusEvent | CompositionEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | SecurityPolicyViolationEvent | SubmitEvent | WheelEvent;
outroend: TouchEvent | UIEvent | Event | MouseEvent | KeyboardEvent | TransitionEvent | ProgressEvent<EventTarget> | ClipboardEvent | AnimationEvent | InputEvent | FocusEvent | CompositionEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | SecurityPolicyViolationEvent | SubmitEvent | WheelEvent;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
prepend: {
slot: string;
};
activator: {};
append: {
slot: string;
};
default: {};
};
};
export declare type ListGroupProps = typeof __propDef.props;
export declare type ListGroupEvents = typeof __propDef.events;
export declare type ListGroupSlots = typeof __propDef.slots;
export default class ListGroup extends SvelteComponentTyped<ListGroupProps, ListGroupEvents, ListGroupSlots> {
}
export {};