1import { IPathStep } from 'awaited-dom/base/AwaitedPath'; 2 3export interface IJsPathError { 4 error: string; 5 pathState: { 6 step: IPathStep; 7 index: number; 8 }; 9} 10 11