hyper/lib/constants/tabs.ts
2019-12-29 15:55:53 +01:00

11 lines
265 B
TypeScript

export const CLOSE_TAB = 'CLOSE_TAB';
export const CHANGE_TAB = 'CHANGE_TAB';
export interface CloseTabAction {
type: typeof CLOSE_TAB;
}
export interface ChangeTabAction {
type: typeof CHANGE_TAB;
}
export type TabActions = CloseTabAction | ChangeTabAction;