move constants to typings as well

This commit is contained in:
Labhansh Agrawal 2023-07-25 16:09:11 +05:30
parent c62ed62752
commit f48c0e0608
22 changed files with 34 additions and 34 deletions

View file

@ -5,8 +5,8 @@ import {
TERM_GROUP_REQUEST,
TERM_GROUP_EXIT,
TERM_GROUP_EXIT_ACTIVE
} from '../constants/term-groups';
import {SESSION_REQUEST} from '../constants/sessions';
} from '../../typings/constants/term-groups';
import {SESSION_REQUEST} from '../../typings/constants/sessions';
import findBySession from '../utils/term-groups';
import {getRootGroups} from '../selectors';
import {setActiveSession, ptyExitSession, userExitSession} from './sessions';