mirror of
https://github.com/strapi/strapi.git
synced 2025-10-02 03:44:24 +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;
|