Skip to content

Commit 1749ccf

Browse files
🤖 dprint fmt
1 parent 612355b commit 1749ccf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

types/google-apps-script/google-apps-script.card-service.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -999,7 +999,7 @@ declare namespace GoogleAppsScript {
999999

10001000
/**
10011001
* An object that defines the validation rule for the widget that it is attached to.
1002-
*
1002+
*
10031003
* const validation = CardService.newValidation()
10041004
* .setCharacterLimit('10')
10051005
* .setInputType(CardService.InputType.TEXT);

types/google-apps-script/test/google-apps-script-tests.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -628,8 +628,8 @@ CardService.newMaterialIcon().setName(""); // $ExpectType MaterialIcon
628628
CardService.newMaterialIcon().setWeight(100); // $ExpectType MaterialIcon
629629

630630
CardService.newValidation(); // $ExpectType Validation
631-
CardService.newValidation().setCharacterLimit(10) // $ExpectType Validation
632-
CardService.newValidation().setInputType(CardService.InputType.TEXT) // $ExpectType Validation
631+
CardService.newValidation().setCharacterLimit(10); // $ExpectType Validation
632+
CardService.newValidation().setInputType(CardService.InputType.TEXT); // $ExpectType Validation
633633

634634
// CardService.newCardBuilder().setDisplayStyle(CardService.DisplayStyle.PEEK)
635635
CardService.DisplayStyle.PEEK;

0 commit comments

Comments
 (0)