Run "yarn build:docs"

This commit is contained in:
metonym 2023-07-19 08:21:36 -07:00
commit bd37bd0f17
188 changed files with 808 additions and 689 deletions

View file

@ -1,9 +1,9 @@
/// <reference types="svelte" />
import type { SvelteComponentTyped } from "svelte";
import type { SvelteHTMLElements } from "svelte/elements";
export interface LinkProps
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["a"]>,
svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["p"]> {
type RestProps = SvelteHTMLElements["a"] & SvelteHTMLElements["p"];
export interface LinkProps extends RestProps {
/**
* Specify the size of the link
* @default undefined
@ -27,7 +27,7 @@ export interface LinkProps
* `inline` must be `false`
* @default undefined
*/
icon?: typeof import("svelte").SvelteComponent;
icon?: typeof import("svelte").SvelteComponent<any>;
/**
* Set to `true` to disable the checkbox

View file

@ -1,4 +1,3 @@
/// <reference types="svelte" />
import type { SvelteComponentTyped } from "svelte";
import type { LinkProps } from "./Link.svelte";