@schemastore/ty 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/index.d.ts +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -1111,9 +1111,9 @@ export type DetectsIgnoreCommentsThatUseInvalidSyntax = Level;
|
|
|
1111
1111
|
* alice = Person(name="Alice", age=30)
|
|
1112
1112
|
* alice["height"] # KeyError: 'height'
|
|
1113
1113
|
*
|
|
1114
|
-
* bob: Person = { "
|
|
1114
|
+
* bob: Person = { "namee": "Bob", "age": 30 } # typo!
|
|
1115
1115
|
*
|
|
1116
|
-
* carol = Person(name="Carol",
|
|
1116
|
+
* carol = Person(name="Carol", aeg=25) # typo!
|
|
1117
1117
|
* ```
|
|
1118
1118
|
*/
|
|
1119
1119
|
export type DetectsInvalidSubscriptAccessesOrTypedDictLiteralKeys = Level;
|
package/package.json
CHANGED