import { StoredCommand, CommandCategory } from '../../../types';

// eslint-disable-next-line import/no-webpack-loader-syntax
const code = require('!!raw-loader!./delete.wavtool').default.replace(/^\s*\/\/\/.*\n*/g, '');

export default {
  id: "deleteEdit",
  name: "Delete (backspace)",
  author_id: 0,
author_name: "wavtool.com",
  category: CommandCategory.Edit,
  description: "Removes the selected samples from the timeline and closes the gap. (Just like deleting text in a text editor).",
  code
} as StoredCommand;

