@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
12 lines (11 loc) • 409 B
TypeScript
import * as React from 'react';
type CSSVariableWatcherProps = {
varName: string;
onChange: (value: number) => void;
allowInts?: boolean;
};
export declare const useCSSVariableWatch: (params: CSSVariableWatcherProps & {
ref: React.MutableRefObject<HTMLElement | null>;
}) => void;
export declare const CSSNumericVariableWatch: (props: CSSVariableWatcherProps) => React.JSX.Element;
export {};