You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
471 B
11 lines
471 B
import { PluginRegistry } from "../pluginRegistry.js"; |
|
|
|
PluginRegistry.register('third party service', { |
|
type: 'third party service', |
|
label: 'Third-Party Service', |
|
props: [ |
|
{ name: 'label', type: 'string', default: 'third party service', group: 'label-group' }, |
|
{ name: 'provider', type: 'string', default: 'Stripe', group: 'third-party-group' }, |
|
{ name: 'latency', type: 'number', default: 200, group: 'third-party-group' } |
|
] |
|
});
|
|
|