@sumsub/fisherman
Version:
The Sumsub Fisherman is a powerful tool that helps developers integrate fraud detection capabilities into their applications. With Fisherman, you can easily identify and prevent fraudulent activities within your system, providing a safer and more secure e
12 lines (11 loc) • 325 B
TypeScript
export interface OrientationInit {
supported?: boolean;
}
export interface OrientationInteraction {
alpha?: number;
beta?: number;
gamma?: number;
orientation?: string;
}
export declare function watchOrientation(): Promise<OrientationInit | undefined>;
export declare function unwatchOrientation(): void;