UNPKG

react-application-core

Version:

A react-based application core for the business applications.

16 lines (15 loc) 571 B
import { AnyT } from '../../definitions.interface'; import { ISnackbarConfiguration } from '../snackbar'; import { INativeMaterialComponent } from '../../entities-definitions.interface'; /** * @stable [05.05.2018] */ export interface INativeMaterialComponentFactory<TNativeMaterialComponent extends INativeMaterialComponent> { attachTo(el: Element): TNativeMaterialComponent; } /** * @stable [22.08.2018] */ export interface INativeMaterialSnackbarComponent extends INativeMaterialComponent, ISnackbarConfiguration { show(config: AnyT): any; }