| 50 | |
| 51 | /** @internal */ |
| 52 | export interface Notification { |
| 53 | method: string; |
| 54 | params?: { |
| 55 | /** |
| 56 | * See [General fields: `_meta`](/specification/2025-06-18/basic/index#meta) for notes on `_meta` usage. |
| 57 | */ |
| 58 | _meta?: { [key: string]: unknown }; |
| 59 | [key: string]: unknown; |
| 60 | }; |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * @category Common Types |
nothing calls this directly
no outgoing calls
no test coverage detected