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:
Joey Perrott 2021-05-18 12:56:27 -07:00 committed by Andrew Scott
parent 5b9a36cf95
commit ec78e68a36
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ interface Formatter {
} }
export interface FormatConfig { export interface FormatConfig {
[keyof: string]: boolean|Formatter; [key: string]: boolean|Formatter;
} }
/** Retrieve and validate the config as `FormatConfig`. */ /** Retrieve and validate the config as `FormatConfig`. */