Type Alias: GErrorLike
GErrorLike =
NativeObject&object
Defined in: packages/ffi/src/native/error.ts:8
Interface representing a GLib GError structure.
Contains the error domain, code, and message from native GTK/GLib errors.
Type Declaration
| Name | Type | Description | Defined in |
|---|---|---|---|
getCode() | () => number | The error code within the domain | packages/ffi/src/native/error.ts:12 |
getDomain() | () => number | The error domain (quark identifying the error source) | packages/ffi/src/native/error.ts:10 |
getMessage() | () => string | Human-readable error message | packages/ffi/src/native/error.ts:14 |