forked from SolidOS/solid-logic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
14 lines (14 loc) · 931 Bytes
/
index.js
File metadata and controls
14 lines (14 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Make these variables directly accessible as it is what you need most of the time
// This also makes these variable globaly accesible in mashlib
import { solidLogicSingleton } from './logic/solidLogicSingleton';
const authn = solidLogicSingleton.authn;
const authSession = solidLogicSingleton.authn.authSession;
const store = solidLogicSingleton.store;
export { ACL_LINK } from './acl/aclLogic';
export { offlineTestID, appContext } from './authn/authUtil';
export { getSuggestedIssuers } from './issuer/issuerLogic';
export { createTypeIndexLogic } from './typeIndex/typeIndexLogic';
export { UnauthorizedError, CrossOriginForbiddenError, SameOriginForbiddenError, NotFoundError, FetchError, NotEditableError, WebOperationError } from './logic/CustomError';
export { solidLogicSingleton, // solidLogicSingleton is exported entirely because it is used in solid-panes
store, authn, authSession };
//# sourceMappingURL=index.js.map