Skip to content

Instantly share code, notes, and snippets.

@shiftyp
Last active December 8, 2020 01:02
Show Gist options
  • Save shiftyp/df9e20ae46435b730dc6a6c63e745d69 to your computer and use it in GitHub Desktop.
Save shiftyp/df9e20ae46435b730dc6a6c63e745d69 to your computer and use it in GitHub Desktop.
Unfortunate TypeScript error
interface RefHandles {
scrollToIntent: HTMLElement['scrollTo'];
}
const targetElement = document.createElement('div');
const handles: RefHandles = {
scrollToIntent(...args: any[]) {
targetElement.scrollTo(...args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment