2016-07-28 04:54:49 -07:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Type used for modifications to metadata
|
|
|
|
|
*
|
|
|
|
|
* @experimental
|
|
|
|
|
*/
|
|
|
|
|
export type MetadataOverride<T> = {
|
2018-05-24 15:49:07 +02:00
|
|
|
add?: Partial<T>,
|
|
|
|
|
remove?: Partial<T>,
|
|
|
|
|
set?: Partial<T>
|
2016-07-28 04:54:49 -07:00
|
|
|
};
|