DI Bag API / index / Presence
Type Alias: Presence<T>
ts
type Presence<T> = {
readonly isPresent: false;
} | {
readonly isPresent: true;
readonly value: T;
};Defined in: inspection.ts:8
Structural optional presence; payloads are application-owned and not frozen.
Type Parameters
| Type Parameter | Description |
|---|---|
T | - |