9 lines
224 B
Plaintext
9 lines
224 B
Plaintext
package 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);
|
|
};
|
|
|