fix(analytics): fix type of provider option (#12642)

This commit is contained in:
Shahed Nasser
2025-05-29 14:02:07 +03:00
committed by GitHub
parent 3d65807d99
commit 820965e21a
6 changed files with 19273 additions and 19260 deletions

View File

@@ -7,7 +7,7 @@ export type AnalyticsModuleOptions = Partial<ModuleServiceInitializeOptions> & {
/**
* Providers to be registered
*/
provider?: {
providers?: {
/**
* The module provider to be registered
*/
@@ -20,5 +20,5 @@ export type AnalyticsModuleOptions = Partial<ModuleServiceInitializeOptions> & {
* key value pair of the configuration to be passed to the provider constructor
*/
options?: Record<string, unknown>
}
}[]
}