blob: d1b6dcd82c4a0018316b406c0b348c8f90fcb64b (
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',
longName: 'An Ulster Triptych',
author: 'George T Watt',
cdCount: 1,
price: '6.00',
scotsounId: '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’.',
},
trackList: ['Winter 1778-79', 'Post script'],
};
export default cd;
|