blob: f930fa406f0827e8539116dd3eee3663ced3c49a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import type Scotsoun from '../../types/Scotsoun';
const cd: Scotsoun = {
title: 'An Ulster Triptych',
'long-name': 'An Ulster Triptych',
author: 'George T Watt',
'cd-count': 1,
price: '6.00',
'scotsoun-id': 'U1',
description: {
sco: 'As featured on BBC Radio Ulster’s ‘A Kist o Words’.',
'en-GB': 'As featured on BBC Radio Ulster’s ‘A Kist o Words’.',
},
'track-list': ['Winter 1778-79', 'Post script'],
};
export default cd;
|