Incorporated the feedback.

Made input options type for `reconfigure` different from default options

Signed-off-by: bnechyporenko <bnechyporenko@bol.com>
This commit is contained in:
bnechyporenko
2022-06-08 10:27:27 +02:00
parent 720de25f58
commit ecb2c3104d
+2 -1
View File
@@ -50,9 +50,10 @@ export type AnyExternalRoutes = { [name: string]: ExternalRouteRef };
* @public
*/
export type AnyPluginOptions = { [name: string]: unknown };
export type AnyPluginInputOptions = { [name: string]: unknown };
export type ReconfigureFunction = (
options: AnyPluginOptions,
options: AnyPluginInputOptions,
) => AnyPluginOptions;
/**