LiveShellCommand typedef

LiveShellCommand = ({String description, String name, List<String> options, String usage})

A command metro live lists in help and completes with Tab.

Implementation

typedef LiveShellCommand = ({
  String name,
  String usage,
  String description,
  List<String> options,
});