UNPKG

@breautek/storm

Version:

Object-Oriented REST API framework

13 lines (12 loc) 340 B
import { Application } from './Application'; /** * @deprecated No replacement. * @param app */ declare let setInstance: (app: Application) => void; /** * @deprecated Pass down Application via constructors/factory methods, when applicable. * @returns */ declare let getInstance: () => Application; export { setInstance, getInstance };