Files
netris-nestri/packages/auth/src/index.ts
2026-08-06 22:13:51 +03:00

27 lines
548 B
TypeScript

export {
/**
* @deprecated
* Use `import { createClient } from "@openauthjs/openauth/client"` instead - it will tree shake better
*/
createClient
} from './client.js';
export {
/**
* @deprecated
* Use `import { createSubjects } from "@openauthjs/openauth/subject"` instead - it will tree shake better
*/
createSubjects
} from './subject.js';
import { issuer } from './issuer.js';
export {
/**
* @deprecated
* Use `import { issuer } from "@openauthjs/openauth"` instead, it was renamed
*/
issuer as authorizer,
issuer
};