survey-pdf 2.3.9 → 2.3.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - SurveyJS PDF library v2.3.9
2
+ * surveyjs - SurveyJS PDF library v2.3.11
3
3
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
@@ -147,5 +147,9 @@ export declare class SurveyPDF extends SurveyModel {
147
147
  * @param type *(Optional)* One of `"blob"`, `"bloburl"`, `"dataurlstring"`. Do not specify this parameter if you want to get raw PDF content as a string value.
148
148
  *
149
149
  */
150
- raw(type?: string): Promise<string>;
150
+ raw(): Promise<string>;
151
+ raw(type: 'arraybuffer'): Promise<ArrayBuffer>;
152
+ raw(type: 'blob'): Promise<Blob>;
153
+ raw(type: 'bloburl'): Promise<URL>;
154
+ raw(type: 'dataurlstring'): Promise<string>;
151
155
  }