aboutsummaryrefslogtreecommitdiff
path: root/src/parser.ts
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/parser.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parser.ts b/src/parser.ts
index a2bb577..c2aa30f 100644
--- a/src/parser.ts
+++ b/src/parser.ts
@@ -2,6 +2,7 @@ import { Enum, constructors, match, matchString } from './utils/adt'
import * as P from './utils/parser-comb'
import { Result } from './utils/result'
+// TODO: vh, vw
export type CSSUnit = '' | 's' | 'ms' | 'px' | '%' | 'rem' | 'em'
export type BinOp = '+' | '-' | '*' | '/'