mAAdhaTTah/brookjs

View on GitHub
packages/brookjs-cli/src/commands/BuildCommand/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { ActionType, StateType } from 'typesafe-actions';
import * as webpack from '../../webpack';
import * as project from '../../project';
import reducer from './reducer';

export type State = StateType<typeof reducer>[0];
export type Action = ActionType<
  typeof webpack.actions & typeof project.actions
>;
export type Args = {};