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

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

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