DefinitelyTyped/types/pdfobject/index.d.ts
2017-08-17 14:53:41 -07:00

17 lines
483 B
TypeScript

// Type definitions for PDFObject v2.0.201604172
// Project: https://github.com/pipwerks/PDFObject
// Definitions by: Niels Boogaard <https://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;
}