@tuentyfaiv/svelte-form
Version:
A form library for Svelte. It is built on top of Svelte and Typescript. Inspired by Formik and React Hook Form.
24 lines (23 loc) • 662 B
TypeScript
import { SvelteComponent } from "svelte";
import type { Props } from "./Errors.proptypes.js";
import "./Errors.css";
declare const __propDef: {
props: Props;
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {
error: string | null;
field: string;
};
};
exports?: {} | undefined;
bindings?: string | undefined;
};
export type ErrorsProps = typeof __propDef.props;
export type ErrorsEvents = typeof __propDef.events;
export type ErrorsSlots = typeof __propDef.slots;
export default class Errors extends SvelteComponent<ErrorsProps, ErrorsEvents, ErrorsSlots> {
}
export {};