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
36
37
|
import type LallansIssue from '$types/LallansIssue';
const issue: LallansIssue = {
issueNumber: 41,
issueName: 'Mairtinmas 1993',
price: '2.50',
description: {
sco: 'The forty-first issue o the Lallans magazine.',
'en-GB': 'The forty-first issue of the Lallans magazine.',
},
contributors: [
'Gavin Sprott',
'Kahlil Gibran',
'Mary Strathie',
'Margaret MacDougall',
'Ronald W McDonald',
'Soutar Davie',
'David Glenday',
'William Donaldson',
'Neil R MacCallum',
'Mary Rawnsley',
'John Murray',
'Ian D Colvin',
'Sheila Douglas',
'William Pritchard',
'Bessie JB MacArthur',
'John S Phillips',
'Gordon McFarlane',
'Lilian Anderson',
'George Philip',
'Sir Gilbert Hay',
'WL Wilson',
'Margaret Rose Harris',
],
};
export default issue;
|