Comment some fields
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user