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