mirror of
https://github.com/nestriness/nestri.git
synced 2026-09-19 17:25:19 +03:00
27 lines
548 B
TypeScript
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
|
|
};
|