@smkit/ui
Version:
UI Kit of SberMarketing
21 lines (20 loc) • 522 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
row: any;
vRow: any;
vIndex: any;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type RowCtxProps = typeof __propDef.props;
export type RowCtxEvents = typeof __propDef.events;
export type RowCtxSlots = typeof __propDef.slots;
export default class RowCtx extends SvelteComponentTyped<RowCtxProps, RowCtxEvents, RowCtxSlots> {
}
export {};