UNPKG

@istanbul/app

Version:

App package of istanbul framework

20 lines (19 loc) 518 B
/** * istanbul @app * Copyright(c) 2022 Sami Salih İBRAHİMBAŞ * MIT Licensed */ declare global { var __VERSION__: string; var __TEST__: boolean; var __DEV__: boolean; var __PROD__: boolean; } export * from "./hooks"; export * from "./types/module.type"; export * from "./plugins"; export * from "./config"; export * from "./types/app.type"; export * from "./warning/warning"; export * from "./util/Util"; export { OnModuleInstalled, OnAppStarted, OnAppFinished, } from "./events/module.events";