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

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

export default {
  id: "gain",
  name: "Gain",
  author_id: 0,
author_name: "wavtool.com",
  description: "A simple volume control. Changes the amplitude of the selected samples.",
  category: CommandCategory.Edit,
  code
} as StoredCommand;
