diff options
author | Matias Linares <matiaslina@gmail.com> | 2021-03-28 19:51:16 -0300 |
---|---|---|
committer | Matias Linares <matiaslina@gmail.com> | 2021-03-28 19:51:16 -0300 |
commit | e57b75a19a8f4a02bf93e99ac9dbf3c06575b219 (patch) | |
tree | e7322f6a0e731e77aaa6b7958454fb43b3455c13 /docs | |
parent | f3f846be62f3715ad2a716043c8e92806c2472fa (diff) | |
download | perl6-matrix-client-e57b75a19a8f4a02bf93e99ac9dbf3c06575b219.tar.gz |
Add typing api support
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Matrix/Client/Room.rakudoc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/Matrix/Client/Room.rakudoc b/docs/Matrix/Client/Room.rakudoc index 7d4cdff..bd0f6fd 100644 --- a/docs/Matrix/Client/Room.rakudoc +++ b/docs/Matrix/Client/Room.rakudoc @@ -138,6 +138,15 @@ read receipt's location. The C<$fully-read> and C<$read> parameters are event ids where the markers will be placed. +=head2 typing + + method typing(Bool $typing, Str :$user-id!, Int :$timeout) + +Sends a typing event to the server telling that C<$user-id> is typing +or not (depending on C<$typing> argument). + +The C<$timeout> parameter is optional for this endpoint. + =head2 invite method invite(Str $user-id) |