SubscriptionProps
Members
Section titled “Members”| key | optional Children | Single key for subscription access (obj[key] or obj[0]). Use this for single subscription access. |
| keys | optional Children[] | Multiple keys for tuple subscription access (obj[a, b] -> obj[(a, b)]). Use this when you need tuple key access. |
| slice | optional { start?: Children; stop?: Children; step?: Children; } | Slice notation for subscription access (obj[start:stop:step]). Use this for Python slice syntax. |