DefinitelyTyped/pdfobject/pdfobject.d.ts
2016-06-28 09:25:51 +02:00

17 lines
482 B
TypeScript

// Type definitions for PDFObject v2.0.201604172
// Project: https://github.com/pipwerks/PDFObject
// Definitions by: Niels Boogaard <http://github.com/nielsboogaard>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module "pdfobject" {
interface PDFObject {
embed(url:string, target?:any, options?:any): HTMLElement;
pdfobjectversion: string;
supportsPDFs: boolean;
}
var pdfObject: PDFObject;
export = pdfObject;
}