@5stones/onix
Version:
A strongly typed library for parsing ONIX feeds.
20 lines (19 loc) • 565 B
text/typescript
// https://ns.editeur.org/onix/en/24
export enum ExtentUnit {
_00 = '00', // Physical pieces
_01 = '01', // Characters
_02 = '02', // Words
_03 = '03', // Pages
_04 = '04', // Hours (integer and decimals)
_05 = '05', // Minutes (integer and decimals)
_06 = '06', // Seconds (integer only)
_11 = '11', // Tracks
_12 = '12', // Discs
_14 = '14', // Hours HHH
_15 = '15', // Hours and minutes HHHMM
_16 = '16', // Hours minutes seconds HHHMMSS
_17 = '17', // Bytes
_18 = '18', // Kbytes
_19 = '19', // Mbytes
_31 = '31', // Chapters
}