18 lines
528 B
Plaintext
18 lines
528 B
Plaintext
import { SvelteComponentTyped } from "svelte";
|
|
import type { DataHandler } from './core';
|
|
declare const __propDef: {
|
|
props: {
|
|
handler: DataHandler;
|
|
};
|
|
events: {
|
|
[evt: string]: CustomEvent<any>;
|
|
};
|
|
slots: {};
|
|
};
|
|
export type SearchProps = typeof __propDef.props;
|
|
export type SearchEvents = typeof __propDef.events;
|
|
export type SearchSlots = typeof __propDef.slots;
|
|
export default class Search extends SvelteComponentTyped<SearchProps, SearchEvents, SearchSlots> {
|
|
}
|
|
export {};
|