@comet-cli/plugin-documentation
Version:
Plugin for generating API documentation
9 lines (8 loc) • 336 B
TypeScript
import { Vue } from 'vue-property-decorator';
import { NavOperation } from '@comet-cli/types';
export default class GroupItem extends Vue {
name: string;
readonly operation: NavOperation;
readonly isRoot: boolean;
get color(): "text-green-500" | "text-orange-500" | "text-blue-500" | "text-red-500" | "text-gray-500";
}