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