()
| 919 | } |
| 920 | |
| 921 | get authDate() { |
| 922 | const ts = this.native?.getAuthTimestamp?.(); |
| 923 | if (ts) { |
| 924 | return new Date(ts); |
| 925 | } |
| 926 | return null; |
| 927 | } |
| 928 | |
| 929 | get claims() { |
| 930 | return deserialize(this.native?.getClaims?.()); |
nothing calls this directly
no outgoing calls
no test coverage detected