You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generally you do not need to instantiate CDP types yourself. Instead, the API creates objects for you as return values from commands, and then you can use those objects as arguments to other commands.
931
+
Generally, you do not need to instantiate CDP types
932
+
yourself. Instead, the API creates objects for you as return
933
+
values from commands, and then you can use those objects as
934
+
arguments to other commands.
932
935
933
936
.. autoclass:: KeyframeStyle
937
+
:members:
938
+
:undoc-members:
939
+
:exclude-members: from_json, to_json
934
940
935
941
Commands
936
942
--------
937
943
944
+
Each command is a generator function. The return
945
+
type ``Generator[x, y, z]`` indicates that the generator
946
+
*yields* arguments of type ``x``, it must be resumed with
947
+
an argument of type ``y``, and it returns type ``z``. In
948
+
this library, types ``x`` and ``y`` are the same for all
949
+
commands, and ``z`` is the return type you should pay attention
0 commit comments