This is the archived documentation for Angular v6. Please visit angular.io to see documentation for the current version of Angular.

MetadataOverride

Type used for modifications to metadata

type MetadataOverride<T> = { add?: Partial<T>; remove?: Partial<T>; set?: Partial<T>; };
      
      type MetadataOverride<T> = {
    add?: Partial<T>;
    remove?: Partial<T>;
    set?: Partial<T>;
};