Update API report

Signed-off-by: Simon Chapman <sdcpublic@outlook.com>
This commit is contained in:
Simon Chapman
2023-03-22 16:43:24 +00:00
parent b8330e8b02
commit 500b5d5612
+9 -1
View File
@@ -30,6 +30,8 @@ export const BazaarPage: (props: BazaarPageProps) => JSX.Element;
export type BazaarPageProps = {
title?: string;
subtitle?: string;
fullWidth?: boolean;
fullHeight?: boolean;
};
// @public (undocumented)
@@ -53,7 +55,13 @@ export const isBazaarAvailable: (
) => Promise<boolean>;
// @public (undocumented)
export const SortView: () => JSX.Element;
export const SortView: (props: SortViewProps) => JSX.Element;
// @public (undocumented)
export type SortViewProps = {
fullWidth?: boolean;
fullHeight?: boolean;
};
// (No @packageDocumentation comment for this package)
```