@comet-cli/plugin-documentation
Version:
Plugin for generating API documentation
12 lines (11 loc) • 324 B
TypeScript
import { Vue } from 'vue-property-decorator';
import { DocGroup } from '@comet-cli/types';
export default class GroupSection extends Vue {
name: string;
readonly id: string;
readonly depth: number;
private group;
get groupIds(): string[];
get operationIds(): string[];
get current(): DocGroup;
}