mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-15 02:11:15 +08:00
3a944ed9f1
* add autodocs * remove unused code * add changeset * fix all of the things * fix all of the things * add changeset * fix things * tewak * fix dep * add ruff as dep with min version * make output pretty + fix bugs * tweaks * fixes * fix types maybe * fix arg refs * fix test * fix md * add error for version * fix test --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
17 lines
266 B
Svelte
17 lines
266 B
Svelte
<script lang="ts">
|
|
import ParamViewer from "./ParamViewer.svelte";
|
|
|
|
export let value: Record<
|
|
string,
|
|
{
|
|
type: string;
|
|
description: string;
|
|
default: string;
|
|
}
|
|
>;
|
|
|
|
export let linkify: string[] = [];
|
|
</script>
|
|
|
|
<ParamViewer docs={value} {linkify} />
|