From 5f1def37930605bea47e2cc50eff3d134b9c0c66 Mon Sep 17 00:00:00 2001 From: Almeida Date: Sun, 8 Aug 2021 17:36:16 +0100 Subject: [PATCH] types(ImageURLOptions): allow 'gif' format (#6342) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Antonio Román --- typings/index.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index 0c012d029..6c63dc8fa 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -3793,8 +3793,9 @@ export interface HTTPOptions { headers?: Record; } -export interface ImageURLOptions extends StaticImageURLOptions { +export interface ImageURLOptions extends Omit { dynamic?: boolean; + format?: DynamicImageFormat; } export interface IntegrationAccount {