RocketChat/Rocket.Chat

View on GitHub
packages/uikit-playground/src/Context/action/editorTabsToggleAction.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { ActionTypes } from "../reducer";

export type EditorTabsToggleAction = {
  type: ActionTypes.EditorToggle,
  payload: number,
};

export const editorTabsToggleAction = (payload: number): EditorTabsToggleAction => ({
  type: ActionTypes.EditorToggle,
  payload,
});