1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { ActionType, createStandardAction } from "typesafe-actions";
6 import { Project } from "../models/project";
9 createProject: createStandardAction('@@project/create')<Project>(),
10 removeProject: createStandardAction('@@project/remove')<string>()
13 export type ProjectAction = ActionType<typeof actions>;
14 export default actions;