cui-light
Version:
cUI light framework for the web
10 lines (9 loc) • 383 B
TypeScript
import { IUIInteractionProvider } from "../models/interfaces";
import { CuiInteractionsType } from "../utils/types";
export declare class CuiInteractionsFactory {
/**
* Gets new instance of component focused logger
* @param type - Interactions type
*/
static get(type: CuiInteractionsType, errorReport?: (e: Error) => void): IUIInteractionProvider;
}