@boxyhq/svelte-ui
Version:
Svelte UI components from BoxyHQ
25 lines (24 loc) • 845 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { LoginProps } from "./types";
declare const __propDef: {
props: {
ssoIdentifier?: LoginProps["ssoIdentifier"];
classNames?: LoginProps["classNames"];
onSubmit: LoginProps["onSubmit"];
styles?: LoginProps["styles"];
innerProps?: LoginProps["innerProps"];
inputLabel?: LoginProps["inputLabel"];
placeholder?: LoginProps["placeholder"];
buttonText?: LoginProps["buttonText"];
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type IndexProps = typeof __propDef.props;
export type IndexEvents = typeof __propDef.events;
export type IndexSlots = typeof __propDef.slots;
export default class Index extends SvelteComponentTyped<IndexProps, IndexEvents, IndexSlots> {
}
export {};