autogenerated .d.ts files

This commit is contained in:
Elijah Duffy
2025-05-07 13:14:06 -07:00
parent b144bbf7a1
commit 476122c6c4
3 changed files with 32 additions and 0 deletions

10
src/lib/Label.svelte.d.ts vendored Normal file
View 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
View 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
View 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;