Skip to content

Commit

Permalink
fix: keyboard implementation with control characters (#129)
Browse files Browse the repository at this point in the history
* fix: keyboard implementation with control characters

* chore: progress

* chore: fix implementation

* chore: remove nonsense waitFors

* chore: remove unnecessary function
  • Loading branch information
lino-levan authored Jan 20, 2025
1 parent d4da2ea commit f760527
Show file tree
Hide file tree
Showing 7 changed files with 1,182 additions and 327 deletions.
2 changes: 1 addition & 1 deletion mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export * from "./src/cache.ts";
export * from "./src/dialog.ts";
export * from "./src/element_handle.ts";
export * from "./src/file_chooser.ts";
export * from "./src/keyboard.ts";
export * from "./src/keyboard/mod.ts";
export * from "./src/mouse.ts";
export * from "./src/page.ts";
export * from "./src/touchscreen.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/element_handle.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { deadline } from "@std/async/deadline";

import type { Celestial, Runtime_CallArgument } from "../bindings/celestial.ts";
import type { KeyboardTypeOptions } from "./keyboard.ts";
import type { KeyboardTypeOptions } from "./keyboard/mod.ts";
import type {
Page,
ScreenshotOptions,
Expand Down
324 changes: 0 additions & 324 deletions src/keyboard.ts

This file was deleted.

Loading

0 comments on commit f760527

Please sign in to comment.