blob: c10e530cc7196c517056ddcec91c82616319e6e8 (
plain)
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
|
import type { LocaleEntry } from './definitions';
/**
* The possible definitions related to books.
*/
export type BookDefinition = LocaleEntry<{
/**
* The names of actual book authors.
*/
author: string[];
/**
* The formats of a book.
*/
format: string[];
/**
* The names of some book genres.
*/
genre: string[];
/**
* The names of actual book series.
*/
series: string[];
/**
* The names of actual book titles.
*/
title: string[];
/**
* The names of actual book publishers.
*/
publisher: string[];
}>;
|