Skip to content

Commit 9abc813

Browse files
🤖 Merge PR DefinitelyTyped#74105 Sync latest changes to @types/google-publisher-tag by @google-publisher-tag
Co-authored-by: jimper <jimper@users.noreply.github.com>
1 parent 58bc210 commit 9abc813

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

‎types/google-publisher-tag/google-publisher-tag-tests.ts‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// Tests for Google Publisher Tag 1.20250811
2-
// Synced from: https://github.com/googleads/google-publisher-tag-types/commit/a3d900bc56c2ce535e539ce139d7e59bc9fe7be4
1+
// Tests for Google Publisher Tag 1.20251117
2+
// Synced from: https://github.com/googleads/google-publisher-tag-types/commit/b4114e351762295c878195e3b243c2afdbb5b889
33

44
// Test for googletag.cmd
55
function test_googletag_cmd() {

‎types/google-publisher-tag/index.d.ts‎

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3431,8 +3431,10 @@ declare namespace googletag {
34313431
/**
34323432
* Displays the rewarded ad. This method should not be called until the user
34333433
* has consented to view the ad.
3434+
*
3435+
* @return Whether the rewarded ad was successfully displayed.
34343436
*/
3435-
makeRewardedVisible(): void;
3437+
makeRewardedVisible(): boolean;
34363438
}
34373439

34383440
/**
@@ -3473,8 +3475,10 @@ declare namespace googletag {
34733475
* @see [Display a game manual interstitial ad](https://support.google.com/admanager/answer/14640119)
34743476
*/
34753477
interface GameManualInterstitialSlotReadyEvent extends Event {
3476-
/** Displays the game manual interstitial ad to the user. */
3477-
makeGameManualInterstitialVisible(): void;
3478+
/** Displays the game manual interstitial ad to the user.
3479+
* Returns whether the ad was successfully displayed.
3480+
*/
3481+
makeGameManualInterstitialVisible(): boolean;
34783482
}
34793483

34803484
/**

‎types/google-publisher-tag/package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "@types/google-publisher-tag",
4-
"version": "1.20250811.9999",
4+
"version": "1.20251117.9999",
55
"nonNpm": "conflict",
66
"nonNpmDescription": "Google Publisher Tag",
77
"projects": [

0 commit comments

Comments
 (0)