cordis/client/webapp/elements/require/elements-state.ts
2021-10-30 12:26:41 -05:00

12 lines
235 B
TypeScript

import Actions from '../../actions';
import Controller from '../../controller';
import UI from '../../ui';
export default interface IState {
window: Window;
document: Document;
controller: Controller;
ui: UI;
actions: Actions;
}