mirror of
https://github.com/strapi/strapi.git
synced 2025-07-27 02:44:13 +00:00
fix: don't use a named export, export an object
This commit is contained in:
parent
28d82d3333
commit
85ef76015c
@ -1 +1,5 @@
|
|||||||
export { default as schema } from './schema';
|
import schema from './schema';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
schema,
|
||||||
|
};
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import type { Strapi } from '@strapi/strapi';
|
import type { Strapi } from '@strapi/strapi';
|
||||||
import { schema as auditLogContentType } from './content-types/audit-log';
|
import auditLogContentType from './content-types/audit-log';
|
||||||
|
|
||||||
interface Event {
|
interface Event {
|
||||||
action: string;
|
action: string;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user