blob: a6a194ce04424fdf3fe2f369320873930a66a62e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import type Scotsoun from '../../types/Scotsoun';
const cd: Scotsoun = {
title: 'Minnie',
'long-name': 'Minnie',
author: 'Sheena Blackhall',
'cd-count': 3,
price: '25.00',
'scotsoun-id': 'M150',
};
export default cd;
|