mirror of
https://github.com/strapi/strapi.git
synced 2025-10-01 19:36:23 +00:00
9 lines
218 B
TypeScript
9 lines
218 B
TypeScript
import type { Plugin } from '@strapi/types';
|
|
import history from './history';
|
|
|
|
const destroy: Plugin.LoadedPlugin['destroy'] = async ({ strapi }) => {
|
|
await history.destroy?.({ strapi });
|
|
};
|
|
|
|
export default destroy;
|