Ignore:
Timestamp:
01/21/25 03:08:24 (2 weeks ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
0c6b92a
Message:

F4 Finalna Verzija

File:
1 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/react-use/lib/useWindowSize.d.ts

    r0c6b92a r79a0317  
    1 declare const useWindowSize: (initialWidth?: number, initialHeight?: number) => {
     1interface Options {
     2    initialWidth?: number;
     3    initialHeight?: number;
     4    onChange?: (width: number, height: number) => void;
     5}
     6declare const useWindowSize: ({ initialWidth, initialHeight, onChange, }?: Options) => {
    27    width: number;
    38    height: number;
Note: See TracChangeset for help on using the changeset viewer.