UNPKG

ag-grid-community

Version:

Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue

6 lines (5 loc) 280 B
export interface ILocaleService<TKey extends string = string> { readonly beanName: 'localeSvc'; getLocaleTextFunc(): LocaleTextFunc<TKey>; } export type LocaleTextFunc<TKey extends string = string> = (key: TKey, defaultValue: string, variableValues?: string[]) => string;