import type { Schema } from '@xyo-network/sdk-protocol'; import type { JsonPathTransformExpression } from './JsonPathTransformExpression.ts'; /** * A dictionary of schema to JSON Path transform expressions. */ export type SchemaToJsonPathTransformExpressionsDictionary = Record> = { [key in keyof T]: JsonPathTransformExpression[]; }; //# sourceMappingURL=SchemaToJsonPathTransformExpressionDictionary.d.ts.map