mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
14 lines
415 B
TypeScript
14 lines
415 B
TypeScript
import { defineInterface } from '@/interfaces/define';
|
|
import InterfaceOptions from './interface-options.vue';
|
|
|
|
export default defineInterface(({ i18n }) => ({
|
|
id: 'interface-options',
|
|
name: i18n.t('interfaces.interface-options.interface-options'),
|
|
description: i18n.t('interfaces.interface-options.description'),
|
|
icon: 'box',
|
|
component: InterfaceOptions,
|
|
types: ['string'],
|
|
options: [],
|
|
system: true,
|
|
}));
|