api report

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2022-01-04 10:49:43 +01:00
parent f0a743ecae
commit 742c7a9929
2 changed files with 11 additions and 0 deletions
+10
View File
@@ -202,6 +202,16 @@ export type CustomProviderClassKey = 'form' | 'button';
// @public (undocumented)
export function DashboardIcon(props: IconComponentProps): JSX.Element;
// @public
export const DelegatedSignInPage: (
props: DelegatedSignInPageProps,
) => JSX.Element | null;
// @public
export type DelegatedSignInPageProps = SignInPageProps & {
provider: string;
};
// @public
type DependencyEdge<T = {}> = T & {
from: string;
@@ -17,6 +17,7 @@
export * from './BottomLink';
export * from './Content';
export * from './ContentHeader';
export * from './DelegatedSignInPage';
export * from './ErrorBoundary';
export * from './ErrorPage';
export * from './Header';