@selenite/commons
Version:
This typescript package provides a set of frequently used utilities, types and svelte actions for building projects with Typescript and Svelte.
10 lines (9 loc) • 353 B
TypeScript
import type { HTMLInputAttributes, HTMLLabelAttributes } from 'svelte/elements';
interface Props extends HTMLInputAttributes {
bordered?: boolean;
label?: string;
labelProps?: HTMLLabelAttributes;
}
declare const Input: import("svelte").Component<Props, {}, "value" | "checked">;
type Input = ReturnType<typeof Input>;
export default Input;