Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gentest/src/CssToYoga.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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']);

Expand Down
2 changes: 1 addition & 1 deletion gentest/src/buildLayoutTree.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion gentest/src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
2 changes: 1 addition & 1 deletion gentest/src/emitters/CppEmitter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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('%', '');
Expand Down
2 changes: 1 addition & 1 deletion gentest/src/emitters/Emitter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @format
*/

import type {ValueWithUnit, LayoutNode} from '../Types.ts';
import type {ValueWithUnit, LayoutNode} from '../types.ts';
import {
parseStyleAttribute,
applyStyles,
Expand Down
2 changes: 1 addition & 1 deletion gentest/src/emitters/JavaEmitter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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('%', '');
Expand Down
2 changes: 1 addition & 1 deletion gentest/src/emitters/JavascriptEmitter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Loading