oak-general-business/es/components/oauth/management/oauthApps/upsert/web.pc.d.ts

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;