8 lines
154 B
TypeScript
8 lines
154 B
TypeScript
|
|
import type { Core } from '@strapi/strapi';
|
||
|
|
|
||
|
|
const register = ({ strapi }: { strapi: Core.Strapi }) => {
|
||
|
|
// register phase
|
||
|
|
};
|
||
|
|
|
||
|
|
export default register;
|