fix(types): fix future flags public types (#11221)

This commit is contained in:
Sébastien Lorber 2025-05-30 19:22:56 +02:00 committed by GitHub
parent dd6396dd39
commit 1c454a9430
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -463,8 +463,8 @@ export type Config = Overwrite<
future?: Overwrite<
DeepPartial<FutureConfig>,
{
v4?: boolean | FutureV4Config;
experimental_faster?: boolean | FasterConfig;
v4?: boolean | Partial<FutureV4Config>;
experimental_faster?: boolean | Partial<FasterConfig>;
}
>;
}