Files
kotlin-fork/libraries/stdlib/js/idl/org.w3c.vibration.idl
T
Ilya Gorbunov 00b23a0fe9 Rearrange kotlin-stdlib-js library sources
Move kotlin.* api inside kotlin directory.
Update copyright paths.
2018-02-26 17:11:08 +03:00

9 lines
226 B
Plaintext

namespace org.w3c.vibration;
// Downloaded from http://www.w3.org/TR/vibration/
typedef (unsigned long or sequence<unsigned long>) VibratePattern; partial interface Navigator {
boolean vibrate (VibratePattern pattern);
};