Type Alias: DehydratedFunctionValue
ts
type DehydratedFunctionValue = {
_encodedType: "function";
_encodedValue: string;
_encodedValueType: "string";
_namedBindings?: Record<string, any>;
};Type definition for a dehydrated function value
Properties
| Property | Type | Description |
|---|---|---|
_encodedType | "function" | The encoded type identifier |
_encodedValue | string | The encoded function as a string |
_encodedValueType | "string" | The encoded value type identifier |
_namedBindings? | Record<string, any> | Optional named bindings for the function |