File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
dashboard-table-view/vue3/src/components
get-started-pdf/vue3/src/components Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ const surveyJson = {
33
33
completedHtml: " Thank you for your feedback!" ,
34
34
};
35
35
36
- function randomIntFromInterval(min , max ) {
36
+ function randomIntFromInterval(min : number , max : number ) {
37
37
return Math .floor (Math .random () * (max - min + 1 ) + min );
38
38
}
39
39
function generateData() {
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ const pdfDocOptions = {
35
35
fontSize: 12
36
36
}
37
37
38
- const savePdf = function (surveyData ) {
38
+ const savePdf = function (surveyData : any ) {
39
39
const surveyPdf = new SurveyPDF (surveyJson , pdfDocOptions );
40
40
surveyPdf .data = surveyData ;
41
41
surveyPdf .save ();
You can’t perform that action at this time.
0 commit comments