12 lines
235 B
TypeScript
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;
|
|
}
|