File size: 662 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
/// <reference types=".pnpm/[email protected]/node_modules/svelte" />
import { SvelteComponentTyped } from "svelte";
import type { ControlsProps } from './types';
declare const __propDef: {
props: ControlsProps;
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
before: {};
default: {};
after: {};
};
};
type ControlsProps_ = typeof __propDef.props;
export { ControlsProps_ as ControlsProps };
export type ControlsEvents = typeof __propDef.events;
export type ControlsSlots = typeof __propDef.slots;
export default class Controls extends SvelteComponentTyped<ControlsProps_, ControlsEvents, ControlsSlots> {
}
|