Skip to content

Commit 5bf63d5

Browse files
committed
Update reference.ts
1 parent 1417671 commit 5bf63d5

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

types/abstract/reference.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ import { Brand } from 'devtypes/types/base';
77
import { ExtractFrom, RequireAtLeastOne, RequireExactlyOne, StrictSubset } from 'devtypes/types/constraints';
88

99
/** Reference types based on BibTeX */
10-
export const ReferenceType = [ 'article', 'book', 'booklet', 'conference', 'inbook', 'incollection', 'inproceedings', 'manual', 'mastersthesis', 'thesis', 'misc', 'phdthesis', 'proceedings', 'techreport', 'unpublished' ] as const;
10+
export const ReferenceType = [
11+
'article', 'book', 'booklet', 'conference', 'inbook', 'incollection', 'inproceedings',
12+
'manual', 'mastersthesis', 'thesis', 'misc', 'phdthesis', 'proceedings', 'techreport',
13+
'unpublished'
14+
] as const;
15+
1116
export type ReferenceType = ( typeof ReferenceType )[ number ];
1217

1318
/**

0 commit comments

Comments
 (0)