carbon-components-svelte/types/FileUploader/FileUploaderSkeleton.svelte.d.ts

21 lines
584 B
TypeScript

import type { SvelteComponentTyped } from "svelte";
import type { SvelteHTMLElements } from "svelte/elements";
type $RestProps = SvelteHTMLElements["div"];
type $Props = {
[key: `data-${string}`]: any;
};
export type FileUploaderSkeletonProps = Omit<$RestProps, keyof $Props> & $Props;
export default class FileUploaderSkeleton extends SvelteComponentTyped<
FileUploaderSkeletonProps,
{
click: WindowEventMap["click"];
mouseover: WindowEventMap["mouseover"];
mouseenter: WindowEventMap["mouseenter"];
mouseleave: WindowEventMap["mouseleave"];
},
{}
> {}