UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

9 lines (8 loc) 292 B
import * as React from 'react'; import { AccessLevel } from '../../types'; export type FieldType = 'color' | 'number' | 'text'; export interface ThemeEditorProps { theme: string; accessLevel: AccessLevel; } export declare const ThemeEditor: React.FunctionComponent<ThemeEditorProps>;