Run "yarn build:docs"

This commit is contained in:
metonym 2023-02-09 11:05:05 -08:00
commit 8fe66f548c
4 changed files with 11 additions and 6 deletions

View file

@ -1,7 +1,8 @@
/// <reference types="svelte" />
import type { SvelteComponentTyped } from "svelte";
export interface CheckboxProps {
export interface CheckboxProps
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["div"]> {
/**
* Specify the value of the checkbox
* @default ""

View file

@ -1,7 +1,10 @@
/// <reference types="svelte" />
import type { SvelteComponentTyped } from "svelte";
export interface FilenameProps {
export interface FilenameProps
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["div"]>,
svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["button"]>,
svelte.JSX.SVGAttributes<SVGSVGElement> {
/**
* Specify the file name status
* @default "uploading"

View file

@ -1,7 +1,8 @@
/// <reference types="svelte" />
import type { SvelteComponentTyped } from "svelte";
export interface FluidFormProps {}
export interface FluidFormProps
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["form"]> {}
export default class FluidForm extends SvelteComponentTyped<
FluidFormProps,