svelte-ux
Version:
A large collection of Svelte components, actions, stores and utils to simplify creating highly interactive and visual applications. Built using Tailwind with extensibility and customization in mind.
28 lines (27 loc) • 789 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
navWidth?: number | undefined;
headerHeight?: number | undefined;
headerPosition?: "full" | "inset" | undefined;
classes?: {
root?: string;
aside?: string;
nav?: string;
} | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
nav: {};
};
};
export type AppLayoutProps = typeof __propDef.props;
export type AppLayoutEvents = typeof __propDef.events;
export type AppLayoutSlots = typeof __propDef.slots;
export default class AppLayout extends SvelteComponentTyped<AppLayoutProps, AppLayoutEvents, AppLayoutSlots> {
}
export {};