autogenerated .d.ts files
This commit is contained in:
10
src/lib/Label.svelte.d.ts
vendored
Normal file
10
src/lib/Label.svelte.d.ts
vendored
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
import type { Snippet } from 'svelte';
|
||||||
|
type $$ComponentProps = {
|
||||||
|
for: string;
|
||||||
|
error?: boolean;
|
||||||
|
bigError?: boolean;
|
||||||
|
children: Snippet;
|
||||||
|
};
|
||||||
|
declare const Label: import("svelte").Component<$$ComponentProps, {}, "">;
|
||||||
|
type Label = ReturnType<typeof Label>;
|
||||||
|
export default Label;
|
||||||
12
src/lib/StyledRawInput.svelte.d.ts
vendored
Normal file
12
src/lib/StyledRawInput.svelte.d.ts
vendored
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
import type { HTMLInputAttributes } from 'svelte/elements';
|
||||||
|
import { type InputValidatorEvent, type ValidatorOptions } from '@repo/validate';
|
||||||
|
type $Props = Omit<HTMLInputAttributes, 'name' | 'value'> & {
|
||||||
|
name: string;
|
||||||
|
value?: string;
|
||||||
|
validate?: ValidatorOptions;
|
||||||
|
ref?: HTMLInputElement | null;
|
||||||
|
onvalidate?: (e: InputValidatorEvent) => void;
|
||||||
|
};
|
||||||
|
declare const StyledRawInput: import("svelte").Component<$Props, {}, "value" | "ref">;
|
||||||
|
type StyledRawInput = ReturnType<typeof StyledRawInput>;
|
||||||
|
export default StyledRawInput;
|
||||||
10
src/lib/TimeInput.svelte.d.ts
vendored
Normal file
10
src/lib/TimeInput.svelte.d.ts
vendored
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
type $$ComponentProps = {
|
||||||
|
name: string;
|
||||||
|
label?: string;
|
||||||
|
value?: string;
|
||||||
|
required?: boolean;
|
||||||
|
invalidMessage?: string;
|
||||||
|
};
|
||||||
|
declare const TimeInput: import("svelte").Component<$$ComponentProps, {}, "value">;
|
||||||
|
type TimeInput = ReturnType<typeof TimeInput>;
|
||||||
|
export default TimeInput;
|
||||||
Reference in New Issue
Block a user