CircularDependencyResponseAsync Type — typescript-sdk Architecture
Architecture documentation for the CircularDependencyResponseAsync type/interface in CircularDependencyResponseAsync.ts from the typescript-sdk codebase.
Entity Profile
Source Code
src/models/CircularDependencyResponseAsync.ts lines 28–59
export interface CircularDependencyResponseAsync {
/**
* Current status of the job.
* @type {string}
* @memberof CircularDependencyResponseAsync
*/
status: CircularDependencyResponseAsyncStatusEnum;
/**
* Unique identifier for the job.
* @type {string}
* @memberof CircularDependencyResponseAsync
*/
jobId: string;
/**
* Recommended seconds to wait before polling again.
* @type {number}
* @memberof CircularDependencyResponseAsync
*/
retryAfter?: number;
/**
* Error message (present when status is failed).
* @type {string}
* @memberof CircularDependencyResponseAsync
*/
error?: string;
/**
*
* @type {CircularDependencyResponse}
* @memberof CircularDependencyResponseAsync
*/
result?: CircularDependencyResponse;
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free