strapi-plugin-preview-button
Version:
A plugin for Strapi CMS that adds a preview button and live view button to the content manager edit view.
10 lines (9 loc) • 375 B
TypeScript
import { type ListLayout } from '@strapi/content-manager/strapi-admin';
import { type UID } from '@strapi/strapi';
export interface ListViewColumnProps {
data: any;
layout: ListLayout;
model: UID.ContentType;
}
declare const ListViewColumn: ({ data, layout, model }: ListViewColumnProps) => import("react/jsx-runtime").JSX.Element;
export default ListViewColumn;