39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
import { SvelteComponentTyped } from "svelte";
|
|
declare const __propDef: {
|
|
props: {
|
|
[x: string]: any;
|
|
/** Enables the active state styles when set true.*/
|
|
selected?: boolean | undefined;
|
|
/** Provide arbitrary classes to style the lead region.*/
|
|
regionLead?: string | undefined;
|
|
/** Provide arbitrary classes to style the label region.*/
|
|
regionLabel?: string | undefined;
|
|
hover?: string | undefined;
|
|
active?: string | undefined;
|
|
spacing?: string | undefined;
|
|
aspectRatio?: string | undefined;
|
|
};
|
|
events: {
|
|
click: MouseEvent;
|
|
keydown: KeyboardEvent;
|
|
keyup: KeyboardEvent;
|
|
keypress: KeyboardEvent;
|
|
mouseover: MouseEvent;
|
|
mouseleave: MouseEvent;
|
|
focus: FocusEvent;
|
|
blur: FocusEvent;
|
|
} & {
|
|
[evt: string]: CustomEvent<any>;
|
|
};
|
|
slots: {
|
|
lead: {};
|
|
default: {};
|
|
};
|
|
};
|
|
export type AppRailAnchorProps = typeof __propDef.props;
|
|
export type AppRailAnchorEvents = typeof __propDef.events;
|
|
export type AppRailAnchorSlots = typeof __propDef.slots;
|
|
export default class AppRailAnchor extends SvelteComponentTyped<AppRailAnchorProps, AppRailAnchorEvents, AppRailAnchorSlots> {
|
|
}
|
|
export {};
|