mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 12:38:39 -09:00
11 lines
265 B
TypeScript
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;
|