Skip to content

Commit 14c75c2

Browse files
committed
fix(enums): typo in Modifier.DECLARE value
Signed-off-by: Lexus Drumgold <unicornware@flexdevelopment.llc>
1 parent 5bbe9f3 commit 14c75c2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/enums/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
* @module docast/enums
44
*/
55

6-
export { default as Type } from './type'
76
export { default as Kind } from './kind'
87
export { default as Modifier } from './modifer'
8+
export { default as Type } from './type'

src/enums/modifer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
enum Modifier {
1212
ABSTRACT = 'abstract',
1313
ASYNC = 'async',
14-
DECLARE = 'delcare',
14+
DECLARE = 'declare',
1515
DEFAULT = 'default',
1616
EXPORT = 'export',
1717
OVERRIDE = 'override',

0 commit comments

Comments
 (0)