From 8d441bc9a854e1046eb437bf59686130f4ba44ab Mon Sep 17 00:00:00 2001 From: Ezequiel Barrales <31355923+ezebarrales@users.noreply.github.com> Date: Tue, 30 Jun 2020 18:29:53 -0300 Subject: [PATCH] Fix 'BannerLayer' types --- src/index.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/index.d.ts b/src/index.d.ts index 1569a1cf7..a4088c5cf 100644 --- a/src/index.d.ts +++ b/src/index.d.ts @@ -80,6 +80,10 @@ export interface BannerLayer { * Image source that will be applied as a CSS background image on the layer. */ image?: string; + /* + * Props to apply to the layer element. + */ + props?: any; } export interface ParallaxBannerProps {