1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
import type LallansIssue from '$types/LallansIssue';
const issue: LallansIssue = {
issueNumber: 38,
issueName: 'Whitsuntid 1992',
price: '2.00',
uploadDate: '2023-08-25',
description: {
sco: 'The thirty-echtth issue o the Lallans magazine.',
'en-GB': 'The thirty-eighth issue of the Lallans magazine.',
},
contributors: [
'John Phillips',
'John Murray',
'Sam Gilliland',
'WG Pritchard',
'David Stevely',
'William Neill',
'Athole Cameron',
'Lilian Anderson',
'Pete Fortune',
'Gavin Douglas',
'James Hall Thomson',
'William Hershaw',
'Davit W Potter',
'John Manson',
'Alexander McGregor',
'Peter Cameron',
'William J Rae',
'Florence Russell',
'Soutar Davie',
],
};
export default issue;
|