mirror of
https://github.com/enso-org/enso.git
synced 2024-11-25 02:35:04 +03:00
doc: clarify type parameter
This commit is contained in:
parent
86bfb986d1
commit
fead15c762
@ -366,7 +366,13 @@ An update about the computed expression.
|
|||||||
interface ExpressionUpdate {
|
interface ExpressionUpdate {
|
||||||
/** The id of updated expression. */
|
/** The id of updated expression. */
|
||||||
expressionId: ExpressionId;
|
expressionId: ExpressionId;
|
||||||
/** The updated type of the expression. */
|
/** The updated type of the expression.
|
||||||
|
*
|
||||||
|
* Possible values:
|
||||||
|
* - empty array indicates no type information for this expression
|
||||||
|
* - array with a single value contains a value of this expression
|
||||||
|
* - array with multiple values represents an intersetion type
|
||||||
|
*/
|
||||||
type: string[];
|
type: string[];
|
||||||
/** The updated method call info. */
|
/** The updated method call info. */
|
||||||
methodCall?: MethodCall;
|
methodCall?: MethodCall;
|
||||||
|
Loading…
Reference in New Issue
Block a user