13 lines
397 B
TypeScript
13 lines
397 B
TypeScript
import React from 'react';
|
|
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../oak-app-domain';
|
|
declare const Oauth: (props: WebComponentProps<EntityDict, keyof EntityDict, false, {
|
|
hasError: boolean;
|
|
errorMessage: string;
|
|
loading: boolean;
|
|
}, {
|
|
retry: () => void;
|
|
returnToIndex: () => void;
|
|
}>) => React.JSX.Element;
|
|
export default Oauth;
|