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

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

export default {
  id: "fadeOut",
  name: "Fade Out (cmd+> or ctrl+>)",
  author_id: 0,
author_name: "wavtool.com",
  description: "Fades audio from 100% to 0% amplitude over the selected span of time.",
  category: CommandCategory.Edit,
  code
} as StoredCommand;
