Result of the LoadAllStartupClasses operation

interface LoadAllResult {
    fatalError?: Error;
    results: LoadResult[];
    success: boolean;
    totalDurationMs: number;
}

Properties

fatalError?: Error

The fatal error that stopped loading (if any)

results: LoadResult[]

Results for each individual class load

success: boolean

Whether all required classes loaded successfully (no fatal errors)

totalDurationMs: number

Total time for all loading operations