From f9e0dfab37ae0ae2c2183964fa78dc863af320f3 Mon Sep 17 00:00:00 2001 From: Ben Jenkinson <59176+BenJenkinson@users.noreply.github.com> Date: Thu, 19 May 2022 12:25:14 +0100 Subject: [PATCH] fix(#2515): Add missing Typescript exports for Placeholders --- types/index.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/types/index.d.ts b/types/index.d.ts index b283d0b93..8c0ea4cf8 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -140,6 +140,10 @@ export { default as PaginationItem } from './lib/PaginationItem'; export { PaginationItemProps } from './lib/PaginationItem'; export { default as PaginationLink } from './lib/PaginationLink'; export { PaginationLinkProps } from './lib/PaginationLink'; +export { default as Placeholder } from './lib/Placeholder'; +export { PlaceholderProps } from './lib/Placeholder'; +export { default as PlaceholderButton } from './lib/PlaceholderButton'; +export { PlaceholderButtonProps } from './lib/PlaceholderButton'; export { default as Popover } from './lib/Popover'; export { PopoverProps } from './lib/Popover'; export { default as PopoverBody } from './lib/PopoverBody';