interface MetadataWithError {
    context?: Record<string, unknown>;
    error?: Error;
    [propName: string]: unknown;
}

Hierarchy

  • Metadata
    • MetadataWithError

Indexable

  • [propName: string]: unknown

Properties

Properties

context?: Record<string, unknown>
error?: Error