hyper/lib/constants/tabs.ts

12 lines
265 B
TypeScript
Raw Normal View History

2016-07-13 12:44:24 -08:00
export const CLOSE_TAB = 'CLOSE_TAB';
export const CHANGE_TAB = 'CHANGE_TAB';
2019-12-27 06:33:21 -09:00
export interface CloseTabAction {
type: typeof CLOSE_TAB;
}
export interface ChangeTabAction {
type: typeof CHANGE_TAB;
}
export type TabActions = CloseTabAction | ChangeTabAction;