File size: 619 Bytes
bc20498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// <reference types=".pnpm/[email protected]/node_modules/svelte" />
import { SvelteComponentTyped } from "svelte";
import type { KeyHandlerProps } from './types';
declare const __propDef: {
    props: KeyHandlerProps;
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
type KeyHandlerProps_ = typeof __propDef.props;
export { KeyHandlerProps_ as KeyHandlerProps };
export type KeyHandlerEvents = typeof __propDef.events;
export type KeyHandlerSlots = typeof __propDef.slots;
export default class KeyHandler extends SvelteComponentTyped<KeyHandlerProps_, KeyHandlerEvents, KeyHandlerSlots> {
}