react-use/lib/useOrientation.d.ts
2018-10-28 14:30:17 +01:00

7 lines
191 B
TypeScript

export interface OrientationState {
angle: number;
type: string;
}
declare const useOrientation: (initialState?: OrientationState) => OrientationState;
export default useOrientation;