igniteui-react-core
Version:
Ignite UI React Core.
15 lines (14 loc) • 432 B
TypeScript
import { ToolContextValueType } from "./ToolContextValueType";
import { Type } from "./type";
/**
* @hidden
*/
export interface IToolbarContextAccessor {
getInternalAccessor(): IToolbarContextAccessor;
setContextValue(a: string, b: ToolContextValueType, c: any): void;
getContextValue(a: string, b: ToolContextValueType): any;
}
/**
* @hidden
*/
export declare let IToolbarContextAccessor_$type: Type;