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.
12 lines
488 B
12 lines
488 B
import { PluginRegistry } from "../pluginRegistry.js"; |
|
|
|
PluginRegistry.register('database', { |
|
type: 'database', |
|
label: 'Database', |
|
props: [ |
|
{ name: 'label', type: 'string', default: 'Database', group: 'label-group' }, |
|
{ name: 'replication', type: 'number', default: 1, group: 'db-group' }, |
|
{ name: 'maxRPS', type: 'number', default: 1000, group: 'db-group' }, |
|
{ name: 'baseLatencyMs', type: 'number', default: 10, group: 'db-group' } |
|
] |
|
});
|
|
|