fluent-svelte-extra
Version:
A faithful implementation of Microsoft's Fluent Design System in Svelte.
21 lines (20 loc) • 601 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
class?: string;
element?: HTMLUListElement;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export declare type MenuBarProps = typeof __propDef.props;
export declare type MenuBarEvents = typeof __propDef.events;
export declare type MenuBarSlots = typeof __propDef.slots;
export default class MenuBar extends SvelteComponentTyped<MenuBarProps, MenuBarEvents, MenuBarSlots> {
}
export {};