blob: d45acc7847958001bdce93b9c08cab7dd6b35446 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import type Scotsoun from '../../types/Scotsoun';
const cd: Scotsoun = {
title: 'Fiddle Favourites',
'long-name': 'Fiddle Favourites',
author: 'Glasgow Caledonian Strathspey and Reel Society',
'cd-count': 2,
price: '18.00',
'scotsoun-id': '012',
'track-list': [
'The Music of the Spey / The Gay Gordons / Glenlivit / The Laird o Drumblair / MacKenzie Hay / MacKenzie Fraser / Angus Campbell',
'Bonawe Highlanders / Angus McKinnon / The 10th HLI Crossing the Rhine',
],
};
export default cd;
|