wkdhkr/dedupper

View on GitHub
src/types/DeleteModeTypes.js

Summary

Maintainability
A
0 mins
Test Coverage
// @flow
/** move to trash box. */
export const DELETE_MODE_TRASH = "trash";
export const DELETE_MODE_MOVE = "move";
export const DELETE_MODE_ERASE = "erase";

export type DeleteModeType = "trash" | "move" | "erase";