( value: any, )
| 25 | |
| 26 | /* eslint-disable @typescript-eslint/no-explicit-any */ |
| 27 | function isBuildIdentifierConfig( |
| 28 | value: any, |
| 29 | ): value is BuildIdentifierConfig<any> { |
| 30 | return ( |
| 31 | value && typeof value === 'object' && value.__isMagicBuildIdentifierMap |
| 32 | ); |
| 33 | } |
| 34 | |
| 35 | const proxify = <T extends ProxiedObject>( |
| 36 | buildIdentifier: string | (() => string), |