diff options
Diffstat (limited to 'cli/tsc/dts')
-rw-r--r-- | cli/tsc/dts/lib.deno.unstable.d.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/tsc/dts/lib.deno.unstable.d.ts b/cli/tsc/dts/lib.deno.unstable.d.ts index 0c1ab8af0..0c20ec1b6 100644 --- a/cli/tsc/dts/lib.deno.unstable.d.ts +++ b/cli/tsc/dts/lib.deno.unstable.d.ts @@ -776,12 +776,13 @@ declare namespace Deno { * | "cocoa" (macOS) | `NSView*` | - | * | "win32" (Windows) | `HWND` | `HINSTANCE` | * | "x11" (Linux) | Xlib `Window` | Xlib `Display*` | + * | "wayland" (Linux) | `wl_surface*` | `wl_display*` | * * @category WebGPU */ export class UnsafeWindowSurface { constructor( - system: "cocoa" | "win32" | "x11", + system: "cocoa" | "win32" | "x11" | "wayland", windowHandle: Deno.PointerValue<unknown>, displayHandle: Deno.PointerValue<unknown>, ); |