From 3db4c59326d5bebca83fa95ce623241222e1cb2f Mon Sep 17 00:00:00 2001 From: PopGoesTheWza <32041843+PopGoesTheWza@users.noreply.github.com> Date: Wed, 26 Dec 2018 16:35:26 +0100 Subject: [PATCH] Update google-apps-script.forms.d.ts --- types/google-apps-script/google-apps-script.forms.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/types/google-apps-script/google-apps-script.forms.d.ts b/types/google-apps-script/google-apps-script.forms.d.ts index 33df1975c7..2f4508a956 100644 --- a/types/google-apps-script/google-apps-script.forms.d.ts +++ b/types/google-apps-script/google-apps-script.forms.d.ts @@ -151,6 +151,9 @@ declare namespace GoogleAppsScript { * checkBoxItem.setValidation(checkBoxValidation); */ export interface CheckboxValidation { + requireSelectAtLeast(number: Integer): CheckboxValidation; + requireSelectAtMost(number: Integer): CheckboxValidation; + requireSelectExactly(number: Integer): CheckboxValidation; } /**