8 lines
335 B
TypeScript
8 lines
335 B
TypeScript
import type { HTMLInputAttributes } from "svelte/elements";
|
|
type $$ComponentProps = {
|
|
value?: string;
|
|
} & Omit<HTMLInputAttributes, "value">;
|
|
declare const SelectHiddenInput: import("svelte").Component<$$ComponentProps, {}, "value">;
|
|
type SelectHiddenInput = ReturnType<typeof SelectHiddenInput>;
|
|
export default SelectHiddenInput;
|