2016-07-28 07:54:49 -04: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
|
|
|
|
*
|
2018-10-19 07:12:20 -04:00
|
|
|
* @publicApi
|
2016-07-28 07:54:49 -04:00
|
|
|
*/
|
|
|
|
export type MetadataOverride<T> = {
|
2018-05-24 09:49:07 -04:00
|
|
|
add?: Partial<T>,
|
|
|
|
remove?: Partial<T>,
|
|
|
|
set?: Partial<T>
|
2016-07-28 07:54:49 -04:00
|
|
|
};
|