mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
789e9fbff0
Summary: Making RCTVibration TurboModule-compatible. Reviewed By: PeteTheHeat Differential Revision: D17581373 fbshipit-source-id: a7aa2d12e7251d332c855435c2f0d83d87f0d2ac
26 lines
669 B
JavaScript
26 lines
669 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import type {TurboModule} from '../TurboModule/RCTExport';
|
|
import * as TurboModuleRegistry from '../TurboModule/TurboModuleRegistry';
|
|
|
|
export interface Spec extends TurboModule {
|
|
+getConstants: () => {||};
|
|
+vibrate: (pattern?: ?number) => void;
|
|
|
|
// Android only
|
|
+vibrateByPattern: (pattern: Array<number>, repeat: number) => void;
|
|
+cancel: () => void;
|
|
}
|
|
|
|
export default (TurboModuleRegistry.getEnforcing<Spec>('Vibration'): Spec);
|