Skip to content

Commit

Permalink
update README
Browse files Browse the repository at this point in the history
  • Loading branch information
nenoNaninu committed Feb 4, 2024
1 parent 8252470 commit de3e3e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,9 @@ When transpiling class, struct, and record, only `public` fields and properties
| ICollection\<T\> | T[] |
| IList\<T\> | T[] |
| ISet\<T\> | T[] |
| Dictionary<TKey, TValue> | { [key: TKey]: TValue } |
| IDictionary<TKey, TValue> | { [key: TKey]: TValue } |
| IReadOnlyDictionary<TKey, TValue> | { [key: TKey]: TValue } |
| Dictionary<TKey, TValue> | Partial<Record<TKey, TValue>> |
| IDictionary<TKey, TValue> | Partial<Record<TKey, TValue>> |
| IReadOnlyDictionary<TKey, TValue> | Partial<Record<TKey, TValue>> |
| Tuple | [T1, T2, ...] | ❌ System.Text.Json |
Expand Down

0 comments on commit de3e3e1

Please sign in to comment.