blob: e5ccc15786ea82f4418ecc655f8085255ec09e4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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',
uploadDate: '2023-08-25',
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;
|