12 lines
450 B
TypeScript
12 lines
450 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;
|
|
}, {
|
|
reGenerateClientSecret: () => void;
|
|
}>) => React.JSX.Element;
|
|
export default Upsert;
|