mirror of
https://github.com/enricoros/big-AGI.git
synced 2026-05-10 21:50:14 -07:00
14 lines
275 B
TypeScript
14 lines
275 B
TypeScript
import type { ICommandsProvider } from './ICommandsProvider';
|
|
|
|
export const CommandsHelp: ICommandsProvider = {
|
|
id: 'cmd-help',
|
|
rank: 99,
|
|
|
|
getCommands: () => [{
|
|
primary: '/help',
|
|
alternatives: ['/?'],
|
|
description: 'Display this list of commands',
|
|
}],
|
|
|
|
};
|