7 lines
133 B
TypeScript
7 lines
133 B
TypeScript
export interface State {
|
|
x: number;
|
|
y: number;
|
|
}
|
|
declare const useWindowScroll: () => State;
|
|
export default useWindowScroll;
|