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

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

export default {
  id: "tone",
  name: "Generate Tone",
  author_id: 0,
author_name: "wavtool.com",
  category: CommandCategory.Generator,
  description: "Produces a pure saw, sin, or square wave.",
  code
} as StoredCommand;
