@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
10 lines (8 loc) • 318 B
TypeScript
/// <reference types="react" />
import { ColumnType } from "@docsvision/web/components/table/interfaces";
export interface IListContenHightlightProps {
searchText: string;
type: ColumnType;
children: string;
}
export declare function ListContentHightlight(props: IListContenHightlightProps): JSX.Element;