9 lines
382 B
TypeScript
9 lines
382 B
TypeScript
import React from 'react';
|
|
import { RowWithActions, WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../../oak-app-domain';
|
|
declare const OauthProvider: (props: WebComponentProps<EntityDict, 'oauthProvider', true, {
|
|
list: RowWithActions<EntityDict, 'oauthProvider'>[];
|
|
systemId: string;
|
|
}>) => React.JSX.Element;
|
|
export default OauthProvider;
|