UNPKG

agnostic-svelte

Version:
24 lines (23 loc) 797 B
/** @typedef {typeof __propDef.props} TableCustomRenderComponentProps */ /** @typedef {typeof __propDef.events} TableCustomRenderComponentEvents */ /** @typedef {typeof __propDef.slots} TableCustomRenderComponentSlots */ export default class TableCustomRenderComponent extends SvelteComponentTyped<{ cellValue: any; }, { [evt: string]: CustomEvent<any>; }, {}> { } export type TableCustomRenderComponentProps = typeof __propDef.props; export type TableCustomRenderComponentEvents = typeof __propDef.events; export type TableCustomRenderComponentSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { cellValue: any; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export {};