diff --git a/gentest/src/CssToYoga.ts b/gentest/src/CssToYoga.ts index 55b1f8f590..aa504e2594 100644 --- a/gentest/src/CssToYoga.ts +++ b/gentest/src/CssToYoga.ts @@ -8,7 +8,7 @@ */ import type Emitter from './emitters/Emitter.ts'; -import type {ParsedStyles, ValueWithUnit} from './Types.ts'; +import type {ParsedStyles, ValueWithUnit} from './types.ts'; const INVISIBLE_BORDER_STYLES = new Set(['none', 'initial']); diff --git a/gentest/src/buildLayoutTree.ts b/gentest/src/buildLayoutTree.ts index 32505ccf32..0bb2cfacd3 100644 --- a/gentest/src/buildLayoutTree.ts +++ b/gentest/src/buildLayoutTree.ts @@ -8,7 +8,7 @@ */ import type {WebDriver} from 'selenium-webdriver'; -import type {LayoutNode} from './Types.ts'; +import type {LayoutNode} from './types.ts'; /** * Build the layout tree by querying the DOM via a single executeScript call. diff --git a/gentest/src/cli.ts b/gentest/src/cli.ts index 30b7be6e98..0b0580d19b 100644 --- a/gentest/src/cli.ts +++ b/gentest/src/cli.ts @@ -18,7 +18,7 @@ import readline from 'node:readline/promises'; import signedsource from 'signedsource'; import {glob} from 'glob'; -import type {LayoutNode} from './Types.ts'; +import type {LayoutNode} from './types.ts'; import {createChromePool} from './ChromePool.ts'; import buildLayoutTree from './buildLayoutTree.ts'; import {CppEmitter} from './emitters/CppEmitter.ts'; diff --git a/gentest/src/emitters/CppEmitter.ts b/gentest/src/emitters/CppEmitter.ts index 264267a276..5c6545e556 100644 --- a/gentest/src/emitters/CppEmitter.ts +++ b/gentest/src/emitters/CppEmitter.ts @@ -8,7 +8,7 @@ */ import Emitter from './Emitter.ts'; -import type {ValueWithUnit} from '../Types.ts'; +import type {ValueWithUnit} from '../types.ts'; function toValueCpp(value: string | number): string { const n = value.toString().replace('px', '').replace('%', ''); diff --git a/gentest/src/emitters/Emitter.ts b/gentest/src/emitters/Emitter.ts index 31ed78eecd..a8423cf576 100644 --- a/gentest/src/emitters/Emitter.ts +++ b/gentest/src/emitters/Emitter.ts @@ -7,7 +7,7 @@ * @format */ -import type {ValueWithUnit, LayoutNode} from '../Types.ts'; +import type {ValueWithUnit, LayoutNode} from '../types.ts'; import { parseStyleAttribute, applyStyles, diff --git a/gentest/src/emitters/JavaEmitter.ts b/gentest/src/emitters/JavaEmitter.ts index 7b501cb7c8..3feb560c41 100644 --- a/gentest/src/emitters/JavaEmitter.ts +++ b/gentest/src/emitters/JavaEmitter.ts @@ -8,7 +8,7 @@ */ import Emitter from './Emitter.ts'; -import type {ValueWithUnit} from '../Types.ts'; +import type {ValueWithUnit} from '../types.ts'; function toValueJava(value: string | number): string { const n = value.toString().replace('px', '').replace('%', ''); diff --git a/gentest/src/emitters/JavascriptEmitter.ts b/gentest/src/emitters/JavascriptEmitter.ts index c95db4d822..be03548126 100644 --- a/gentest/src/emitters/JavascriptEmitter.ts +++ b/gentest/src/emitters/JavascriptEmitter.ts @@ -8,7 +8,7 @@ */ import Emitter from './Emitter.ts'; -import type {ValueWithUnit} from '../Types.ts'; +import type {ValueWithUnit} from '../types.ts'; function toValueJavascript(value: ValueWithUnit): string { switch (value.type) {