ag-grid-community
Version:
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
8 lines (7 loc) • 466 B
TypeScript
/** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */
export interface ILocaleService<TKey extends string = string> {
readonly beanName: 'localeSvc';
getLocaleTextFunc(): LocaleTextFunc<TKey>;
}
/** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */
export type LocaleTextFunc<TKey extends string = string> = (key: TKey, defaultValue: string, variableValues?: string[]) => string;