UNPKG

@omx-sdk/core

Version:

Core module for OMX SDK with authentication and shared utilities

15 lines 451 B
/** * @omx-sdk/core * Core module for OMX SDK with authentication and shared utilities */ export * from "./client.js"; export { CoreAuth } from "./core.js"; export * from "./errors.js"; export * from "./types.js"; // Import for convenience function import { CoreAuth } from "./core.js"; // Convenience function to create CoreAuth instance export function createCoreAuth(config) { return new CoreAuth(config); } //# sourceMappingURL=index.js.map