UNPKG

880 BTypeScriptView Raw
1import { RowGroupingDisplayType, TreeDataDisplayType } from './entities/gridOptions';
2export declare function logDeprecation<T extends {}>(version: string, oldProp: keyof T, newProp?: keyof T, message?: string): void;
3export declare class GridOptionsValidator {
4 private readonly gridOptions;
5 private readonly gridOptionsService;
6 private pickOneWarning;
7 init(): void;
8 private checkColumnDefProperties;
9 private checkColumnDefViolations;
10 private checkGridOptionsProperties;
11 private checkProperties;
12 private deprecatedProperties;
13 private checkForDeprecated;
14 private checkForViolations;
15 private treeDataViolations;
16}
17export declare function matchesGroupDisplayType(toMatch: RowGroupingDisplayType, supplied?: string): boolean;
18export declare function matchesTreeDataDisplayType(toMatch: TreeDataDisplayType, supplied?: string): boolean;