Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Last active May 26, 2016 06:42
Show Gist options
  • Save wullemsb/7277943 to your computer and use it in GitHub Desktop.
Save wullemsb/7277943 to your computer and use it in GitHub Desktop.
Starting point to extend the jQuery type definitions for TypeScript
/// <reference path="../jquery/jquery.d.ts" />
// Type definitions for html2canvas
interface JQuery {
html2canvas(options?: any): JQuery;
}
declare var html2canvas: JQueryStatic;
$(document.body).html2canvas({});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment