mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-27 16:48:55 +00:00
This is a rewrite of the OAuth2 module to address some bugs and inconsistencies. And since it changes the structure of the credentials, I'm marking this as a breaking change. Note that you will have to update your existing credentials, that is if you wish to continue using them. Otherwise, simply delete them and sign in again.
16 lines
513 B
TypeScript
16 lines
513 B
TypeScript
export { default as Session } from './Session.js';
|
|
export * from './Session.js';
|
|
|
|
export { default as Actions } from './Actions.js';
|
|
export * from './Actions.js';
|
|
|
|
export { default as Player } from './Player.js';
|
|
export * from './Player.js';
|
|
|
|
export { default as OAuth2 } from './OAuth2.js';
|
|
export * from './OAuth2.js';
|
|
|
|
export * as Clients from './clients/index.js';
|
|
export * as Endpoints from './endpoints/index.js';
|
|
export * as Managers from './managers/index.js';
|
|
export * as Mixins from './mixins/index.js'; |