Skip to content

Instantly share code, notes, and snippets.

@maxmumford
Created November 28, 2018 13:14
Show Gist options
  • Save maxmumford/e603be82bc590d8b3f5e2204a43d110f to your computer and use it in GitHub Desktop.
Save maxmumford/e603be82bc590d8b3f5e2204a43d110f to your computer and use it in GitHub Desktop.
TypeScript type definition for document-offset npm package
declare module 'document-offset' {
export default function offset(ele: HTMLElement): {top: number, left: number};
}
@maxmumford
Copy link
Author

Use with

import offset from 'document-offset';

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment