Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/interfaces/IJsPathError.ts
1028 views
1
import { IPathStep } from 'awaited-dom/base/AwaitedPath';
2
3
export interface IJsPathError {
4
error: string;
5
pathState: {
6
step: IPathStep;
7
index: number;
8
};
9
}
10
11