chore(8.0): final pre-RC1 sweep — API consistency, named errors, orphans, zero-cast codebase
This commit is contained in:
parent
970e08c466
commit
1f7e365a4e
237 changed files with 1951 additions and 49413 deletions
|
|
@ -173,7 +173,7 @@ export interface ValidationConfigOptions {
|
|||
* These adapt to available memory and observed performance
|
||||
*/
|
||||
export class ValidationConfig {
|
||||
private static instance: ValidationConfig
|
||||
private static instance: ValidationConfig | null = null
|
||||
|
||||
// Dynamic limits based on system
|
||||
public maxLimit: number
|
||||
|
|
@ -265,7 +265,7 @@ export class ValidationConfig {
|
|||
* Reset singleton (for testing or reconfiguration)
|
||||
*/
|
||||
static reset(): void {
|
||||
ValidationConfig.instance = null as any
|
||||
ValidationConfig.instance = null
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue