@rocket.chat/onboarding-ui
Version:
Set of components and functions for the onboarding experience on Rocket.Chat
12 lines • 459 B
TypeScript
import type { ReactElement } from 'react';
type OauthAuthorizationPageProps = {
clientName?: string | undefined;
onClickAuthorizeOAuth: () => void;
error: {
message?: string;
onGoBack?: () => void;
};
};
declare const OauthAuthorizationPage: ({ clientName, onClickAuthorizeOAuth, error, }: OauthAuthorizationPageProps) => ReactElement;
export default OauthAuthorizationPage;
//# sourceMappingURL=OauthAuthorizationPage.d.ts.map