martijnversluis/ChordSheetJS

View on GitHub
data/sections.ts

Summary

Maintainability
A
0 mins
Test Coverage
const sections: [string, boolean][] = [
  // name, generate shorthand tag (eg. sog, eot)
  ['abc', false],
  ['grid', true],
  ['ly', false],
  ['tab', true],
];

export default sections;