mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
fix(dev-infra): correct FormatConfig interface (#42154)
Correct the FormatConfig interface to use `[key: string]` instead of the incorrect `[keyof: string]`. PR Close #42154
This commit is contained in:
parent
c7fe799ef9
commit
cbea3b9cfb
1 changed files with 1 additions and 1 deletions
|
|
@ -13,7 +13,7 @@ interface Formatter {
|
|||
}
|
||||
|
||||
export interface FormatConfig {
|
||||
[keyof: string]: boolean|Formatter;
|
||||
[key: string]: boolean|Formatter;
|
||||
}
|
||||
|
||||
/** Retrieve and validate the config as `FormatConfig`. */
|
||||
|
|
|
|||
Loading…
Reference in a new issue