UNPKG
latex-parser
Version:
latest (0.6.2)
0.6.2
0.6.1
0.6.0
0.5.1
0.5.0
0.3.6
0.3.5
0.3.4
0.3.3
0.3.2
0.2.1
0.2.0
0.1.7
0.1.6
0.1.5
0.1.4
LaTeX parser
github.com/digitalheir/latex-parser
digitalheir/latex-parser
latex-parser
/
deprecated-
/
lib
/
Latex
/
Directive
/
index.ts
13 lines
(12 loc)
•
307 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/** * LaTeX directive *
@enum
{
string
} */
export
const
Directive
= {
BEGIN
:
"BEGIN"
,
// begin something
END
:
"END"
// end something
};
export
type
Directive
= keyof
typeof
Directive
;
export
function
isDirective
(
x
:
any
): x is
Directive
{
return
Directive
.
hasOwnProperty
(x); }