@loopback/docs
Version:
Documentation for LoopBack 4
28 lines (20 loc) • 654 B
Markdown
lang: en
title: 'API docs: context.notification'
keywords: LoopBack 4.0, LoopBack 4
sidebar: lb4_sidebar
permalink: /doc/en/lb4/apidocs.context.notification.html
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) > [@loopback/context](./context.md) > [Notification](./context.notification.md)
## Notification type
Event data for observer notifications
<b>Signature:</b>
```typescript
export declare type Notification = {
eventType: ContextEventType;
binding: Readonly<Binding<unknown>>;
context: Context;
observers: Set<ContextEventObserver>;
};
```