carbon-components-svelte/types/Pagination/PaginationSkeleton.svelte.d.ts

21 lines
578 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 PaginationSkeletonProps = Omit<$RestProps, keyof $Props> & $Props;
export default class PaginationSkeleton extends SvelteComponentTyped<
PaginationSkeletonProps,
{
click: WindowEventMap["click"];
mouseover: WindowEventMap["mouseover"];
mouseenter: WindowEventMap["mouseenter"];
mouseleave: WindowEventMap["mouseleave"];
},
{}
> {}