ut-tools
Version:
Build and Release management automation package.
23 lines (22 loc) • 477 B
TypeScript
/**
* Stoplight node types
*/
export declare enum NodeType {
Article = "article",
HttpService = "http_service",
HttpServer = "http_server",
HttpOperation = "http_operation",
Model = "model",
Generic = "generic",
Unknown = "unknown",
TableOfContents = "table_of_contents",
SpectralRuleset = "spectral_ruleset"
}
/**
* Node data formats
*/
export declare enum NodeFormat {
Json = "json",
Markdown = "markdown",
Yaml = "yaml"
}