mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
17 lines
482 B
TypeScript
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;
|
|
|
|
}
|