discord-player 6.6.8-dev.1 → 6.6.8-dev.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1983,6 +1983,7 @@ declare class Context<T> {
1983
1983
  /**
1984
1984
  * Run a function within the context of this provider
1985
1985
  */
1986
+ provide<R = unsafe>(value: T, receiver: ContextReceiver<R>): R;
1986
1987
  provide<R = unsafe>({ receiver, value }: ContextProviderProps<T, R>): R;
1987
1988
  }
1988
1989
  /**