Bicep 错误/警告代码 - BCP083
引用似乎存在拼写错误的类型的属性时,将发生此错误/警告。
错误/警告说明
The type <type-definition> does not contain property <property-name>. Did you mean <property-name>?
示例
以下示例会引发错误,因为 foo.type1 似乎存在拼写错误。
type foo = {
type: string
}
type bar = foo.type1
可以通过更正拼写错误来修复错误:
type foo = {
type: string
}
type bar = foo.type
后续步骤
有关 Bicep 错误和警告代码的详细信息,请参阅 Bicep 警告和错误。