asposepdfcloud
Version:
Aspose.PDF Cloud is a REST API for creating and editing PDF files. Most popular features proposed by Aspose.PDF Cloud: PDF to Word, Convert PDF to Image, Merge PDF, Split PDF, Add Images to PDF, Rotate PDF. It can also be used to convert PDF files to diff
44 lines • 1.11 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.SoundAnnotation = void 0;
const markupAnnotation_1 = require("./markupAnnotation");
class SoundAnnotation extends markupAnnotation_1.MarkupAnnotation {
static getAttributeTypeMap() {
return super.getAttributeTypeMap().concat(SoundAnnotation.attributeTypeMap);
}
}
exports.SoundAnnotation = SoundAnnotation;
SoundAnnotation.discriminator = undefined;
SoundAnnotation.attributeTypeMap = [
{
"name": "filePath",
"baseName": "FilePath",
"type": "string"
},
{
"name": "icon",
"baseName": "Icon",
"type": "SoundIcon"
},
{
"name": "rate",
"baseName": "Rate",
"type": "number"
},
{
"name": "channels",
"baseName": "Channels",
"type": "number"
},
{
"name": "bits",
"baseName": "Bits",
"type": "number"
},
{
"name": "encoding",
"baseName": "Encoding",
"type": "SoundEncoding"
}
];
//# sourceMappingURL=soundAnnotation.js.map
;