UNPKG

react-select-table

Version:
22 lines (21 loc) 492 B
/** * @namespace UtilsTypes */ /** * @typedef {Utils} UtilsTypes.UtilsClass */ export default class Utils { constructor(namespace: any, options: any); options: import("../utils/optionsUtils").Options; actions: Actions; selectors: Selectors; events: Events; hooks: Hooks; } export namespace UtilsTypes { type UtilsClass = Utils; } import Actions from "./Actions"; import Selectors from "./Selectors"; import Events from "./Events"; import Hooks from "./Hooks";