8 lines
348 B
TypeScript
8 lines
348 B
TypeScript
import React from 'react';
|
|
import { RowWithActions, WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../../../oak-app-domain';
|
|
declare const Upsert: (props: WebComponentProps<EntityDict, 'oauthProvider', false, {
|
|
item: RowWithActions<EntityDict, 'oauthProvider'>;
|
|
}>) => React.JSX.Element;
|
|
export default Upsert;
|