Type Alias ConstantExpression
type ConstantExpression = {
_globalState: Record<string, any>;
evaluate: (
globals: GlobalProperties,
feature?: Feature,
featureState?: FeatureState,
canonical?: ICanonicalTileID,
availableImages?: string[],
) => any;
globalStateRefs: Set<string>;
kind: "constant";
}
_globalState: Record<string, any>;
evaluate: (
globals: GlobalProperties,
feature?: Feature,
featureState?: FeatureState,
canonical?: ICanonicalTileID,
availableImages?: string[],
) => any;
globalStateRefs: Set<string>;
kind: "constant";
}
Index
Properties
Properties
Readonly_globalState
Readonlyevaluate
evaluate: (
globals: GlobalProperties,
feature?: Feature,
featureState?: FeatureState,
canonical?: ICanonicalTileID,
availableImages?: string[],
) => any
globals: GlobalProperties,
feature?: Feature,
featureState?: FeatureState,
canonical?: ICanonicalTileID,
availableImages?: string[],
) => any
globalStateRefs
globalStateRefs: Set<string>
kind
kind: "constant"
Was this helpful?