Update google-apps-script.forms.d.ts

This commit is contained in:
PopGoesTheWza 2018-12-26 16:35:26 +01:00 committed by GitHub
parent e94a58fba1
commit 3db4c59326
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}
/**