UNPKG

gridjs-svelte

Version:

A Svelte wrapper component for Grid.js

21 lines (20 loc) 574 B
import { Component as gComponent } from "gridjs"; interface SvelteWrapperProps { component: any; parentProps?: Record<string, any>; parentElement?: string; [key: string]: any; } export declare class SvelteWrapper extends gComponent<SvelteWrapperProps> { static defaultProps: { parentElement: string; parentProps: {}; }; ref: import("preact").RefObject<any>; instance: any; componentDidMount(): void; componentDidUpdate(): void; componentWillUnmount(): void; render(): import("preact").VNode<any>; } export {};