File size: 566 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
/// <reference types=".pnpm/[email protected]/node_modules/svelte" />
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: Record<string, never>;
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type UserSelectionProps = typeof __propDef.props;
export type UserSelectionEvents = typeof __propDef.events;
export type UserSelectionSlots = typeof __propDef.slots;
export default class UserSelection extends SvelteComponentTyped<UserSelectionProps, UserSelectionEvents, UserSelectionSlots> {
}
export {};
|