From e2553dd081cd5435f7d3f1cdf4896805387d0bd8 Mon Sep 17 00:00:00 2001 From: sa68ru Date: Tue, 7 Jan 2020 12:10:04 +0300 Subject: [PATCH] Added is_animated boolean. --- javascript/index.d.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/javascript/index.d.ts b/javascript/index.d.ts index 48b87d5..87fcc19 100644 --- a/javascript/index.d.ts +++ b/javascript/index.d.ts @@ -1623,6 +1623,11 @@ export interface Sticker { */ height: number; + /** + * True, if the sticker is animated + */ + is_animated: boolean; + /** * Sticker thumbnail in the .webp or .jpg format */ @@ -3602,4 +3607,4 @@ export interface GameHighScore { * Score */ score: number; -} \ No newline at end of file +}