Files
directus/app/src/interfaces/interface/index.ts
2020-08-28 17:43:36 -04:00

13 lines
282 B
TypeScript

import { defineInterface } from '../define';
import InterfaceInterface from './interface.vue';
export default defineInterface(({ i18n }) => ({
id: 'interface',
name: 'Interface',
icon: 'box',
component: InterfaceInterface,
types: ['string'],
system: true,
options: [],
}));