ag-grid-community
Version:
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
10 lines (9 loc) • 323 B
TypeScript
/**
* A collection of CSS styles and default parameter values that can be added to
* a theme. Parts are created with the createPart helper function.
*/
export type Part<TParams = unknown> = {
readonly feature?: string;
readonly modeParams: Record<string, TParams>;
readonly css?: string | (() => string);
};