adminjs
Version:
Admin panel for apps written in node.js
15 lines (14 loc) • 460 B
TypeScript
import React from 'react';
import { ActionProps } from './action.props.js';
/**
* @name ShowAction
* @category Actions
* @description Shows a given record.
* @component
* @private
*/
declare const Show: React.FC<ActionProps>;
declare const OverridableShow: React.ComponentType<ActionProps & {
OriginalComponent?: React.ComponentType<ActionProps> | undefined;
}>;
export { OverridableShow as default, OverridableShow as Show, Show as OriginalShow, };