flowGraphPathConverter.d.ts 608 B

12345678910111213
  1. import type { FlowGraphContext } from "./flowGraphContext";
  2. import type { IPathToObjectConverter, IObjectInfo } from "../ObjectModel/objectModelInterfaces";
  3. import type { IObjectAccessor } from "./typeDefinitions";
  4. /**
  5. * @experimental
  6. * A path converter that converts a path on the flow graph context variables to an object accessor.
  7. */
  8. export declare class FlowGraphPathConverter implements IPathToObjectConverter<IObjectAccessor> {
  9. private _context;
  10. private _separator;
  11. constructor(_context: FlowGraphContext, _separator?: string);
  12. convert(path: string): IObjectInfo<IObjectAccessor>;
  13. }