Skip to content

Commit 83e7eaa

Browse files
committed
Fix type import
1 parent cb7fbcf commit 83e7eaa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Length.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* @flow */
22
'use strict';
33

4-
import NodeContainer from './NodeContainer';
4+
import type NodeContainer from './NodeContainer';
55

66
const LENGTH_WITH_UNIT = /([\d.]+)(px|r?em|%)/i;
77

src/Unicode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* @flow */
22
'use strict';
33

4-
import NodeContainer from './NodeContainer';
4+
import type NodeContainer from './NodeContainer';
55
import {LineBreaker, fromCodePoint, toCodePoints} from 'css-line-break';
66
import {OVERFLOW_WRAP} from './parsing/overflowWrap';
77

0 commit comments

Comments
 (0)