We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 006cfcd commit fb40126Copy full SHA for fb40126
1 file changed
src/vs/platform/commands/common/commands.ts
@@ -39,9 +39,14 @@ export interface ICommand {
39
}
40
41
export interface ICommandHandlerDescription {
42
- description: string;
43
- args: { name: string; description?: string; constraint?: TypeConstraint; schema?: IJSONSchema; }[];
44
- returns?: string;
+ readonly description: string;
+ readonly args: ReadonlyArray<{
+ readonly name: string;
45
+ readonly description?: string;
46
+ readonly constraint?: TypeConstraint;
47
+ readonly schema?: IJSONSchema;
48
+ }>;
49
+ readonly returns?: string;
50
51
52
export interface ICommandRegistry {
0 commit comments