2022-09-12 07:13:52 +00:00
|
|
|
const TerminalProps = [
|
|
|
|
{
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'welcomeMessage',
|
|
|
|
type: 'string',
|
|
|
|
default: 'null',
|
|
|
|
description: 'Initial text to display on terminal.'
|
2022-09-12 07:13:52 +00:00
|
|
|
},
|
|
|
|
{
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'prompt',
|
|
|
|
type: 'string',
|
|
|
|
default: 'null',
|
|
|
|
description: 'Prompt text for each command.'
|
2022-09-12 07:13:52 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
terminal: {
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'Terminal',
|
|
|
|
description: 'Terminal is a text based user interface.',
|
2022-09-12 07:13:52 +00:00
|
|
|
props: TerminalProps
|
|
|
|
}
|
|
|
|
};
|