ag-grid-community
Version:
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
7 lines (6 loc) • 350 B
TypeScript
import type { BeanCollection, BeanName } from './context';
import type { GenericBean } from './genericBean';
export interface Bean extends GenericBean<BeanName, BeanCollection> {
}
/** For any Bean that is required via auto wired or extracted by name from the Context must have a beanName */
export type NamedBean = Required<Pick<Bean, 'beanName'>>;