/** * Bridge Module Constants * * Injection tokens for the bridge module. */ /** * Injection token for the array of active IChatProvider instances. * * Use this token to inject all configured chat providers: * ``` * @Inject(CHAT_PROVIDERS) private readonly chatProviders: IChatProvider[] * ``` */ export const CHAT_PROVIDERS = "CHAT_PROVIDERS";