We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcd96f1 commit 7faaee1Copy full SHA for 7faaee1
dashboard-table-view/vue3/src/components/DashboardTableView.vue
@@ -33,7 +33,7 @@ const surveyJson = {
33
completedHtml: "Thank you for your feedback!",
34
};
35
36
-function randomIntFromInterval(min, max) {
+function randomIntFromInterval(min: number, max: number) {
37
return Math.floor(Math.random() * (max - min + 1) + min);
38
}
39
function generateData() {
get-started-pdf/vue3/src/components/MySurvey.vue
@@ -35,7 +35,7 @@ const pdfDocOptions = {
fontSize: 12
-const savePdf = function (surveyData) {
+const savePdf = function (surveyData: any) {
const surveyPdf = new SurveyPDF(surveyJson, pdfDocOptions);
40
surveyPdf.data = surveyData;
41
surveyPdf.save();
0 commit comments