Skip to content

Instantly share code, notes, and snippets.

@ruanzx
Forked from wullemsb/UsageSample.ts
Created May 26, 2016 06:42
Show Gist options
  • Save ruanzx/3ae1053bd81580bfec4a190ac501262a to your computer and use it in GitHub Desktop.
Save ruanzx/3ae1053bd81580bfec4a190ac501262a 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