17 lines
591 B
TypeScript
17 lines
591 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, "oauthApplication", false, {
|
|
item: RowWithActions<EntityDict, "oauthApplication">;
|
|
clientSecret: string;
|
|
isCreation: boolean;
|
|
open: boolean;
|
|
onCancel: () => void;
|
|
onOk: () => void;
|
|
hideModal: boolean;
|
|
}, {
|
|
reGenerateClientSecret: () => void;
|
|
setHideModal: (hide: boolean) => void;
|
|
}>) => React.JSX.Element | null;
|
|
export default Upsert;
|