Comment some fields

This commit is contained in:
Christopher Schleiden
2023-01-05 17:35:05 -08:00
parent 263e3b69ec
commit 81e12881d8
@@ -1,9 +1,16 @@
import {WorkflowContext} from "../context/workflow-context"; import {WorkflowContext} from "../context/workflow-context";
export interface Value { export interface Value {
/** Label of this value */
label: string; label: string;
/** Optional description to show when auto-completing or hovering */
description?: string; description?: string;
/** Whether this value is deprecated */
deprecated?: boolean; deprecated?: boolean;
/** Alternative insert text, if not given `label` will be used */
insertText?: string; insertText?: string;
} }