UNPKG

@directus/extensions-sdk

Version:

A toolkit to develop extensions to extend Directus

26 lines (24 loc) 408 B
import { defineOperationApp } from '@directus/extensions-sdk'; export default defineOperationApp({ id: 'custom', name: 'Custom', icon: 'box', description: 'This is my custom operation!', overview: ({ text }) => [ { label: 'Text', text: text, }, ], options: [ { field: 'text', name: 'Text', type: 'string', meta: { width: 'full', interface: 'input', }, }, ], });