@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.
21 lines (20 loc) • 521 B
TypeScript
export declare const keys: {
readonly enter: "Enter";
readonly up: "ArrowUp";
readonly down: "ArrowDown";
readonly left: "ArrowLeft";
readonly right: "ArrowRight";
readonly tab: "Tab";
readonly esc: "Escape";
readonly space: " ";
readonly backspace: "Backspace";
readonly delete: "Delete";
readonly home: "Home";
readonly end: "End";
};
export declare const tags: {
readonly span: "SPAN";
readonly div: "DIV";
readonly p: "P";
readonly button: "BUTTON";
};