| 2 | * An entry in the construct metadata table. |
| 3 | */ |
| 4 | export interface MetadataEntry { |
| 5 | /** |
| 6 | * The metadata entry type. |
| 7 | */ |
| 8 | readonly type: string; |
| 9 | |
| 10 | /** |
| 11 | * The data. |
| 12 | */ |
| 13 | readonly data: any; |
| 14 | |
| 15 | /** |
| 16 | * Stack trace at the point of adding the metadata. |
| 17 | * |
| 18 | * Only available if `addMetadata()` is called with `stackTrace: true`. |
| 19 | * |
| 20 | * @default - no trace information |
| 21 | */ |
| 22 | readonly trace?: string[]; |
| 23 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…