2020-04-20 16:00:10 -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
|
|
|
|
*/
|
|
|
|
|
|
|
|
export interface FormatConfig {
|
2020-04-24 19:29:53 -04:00
|
|
|
[keyof: string]: boolean|{
|
|
|
|
matchers: string[];
|
|
|
|
};
|
2020-04-20 16:00:10 -04:00
|
|
|
}
|