UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

19 lines (18 loc) 517 B
/** * Copyright Super iPaaS Integration LLC, an IBM Company 2024 */ import { TreeEntry } from "./tree-entry.model.js"; import { VCSFileInfo } from "../../vcs/models/vcs-file-info.model.js"; export interface OutlineCodeViewNode { name: string, id: string; label: string; path?: FileSystemFileHandle | TreeEntry | VCSFileInfo; type: string; children?: OutlineCodeViewNode[]; method?: string; isLink?: boolean; isHighLight?: boolean; isContent?: boolean; isOpen?:boolean; }