10 lines
450 B
TypeScript
10 lines
450 B
TypeScript
import React from 'react';
|
|
import { RowWithActions, WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
declare const Records: (props: WebComponentProps<EntityDict, "oauthUserAuthorization", true, {
|
|
list: RowWithActions<EntityDict, "oauthUserAuthorization">[];
|
|
}, {
|
|
revoke: (item: RowWithActions<EntityDict, "oauthUserAuthorization">) => void;
|
|
}>) => React.JSX.Element;
|
|
export default Records;
|