Files
self/sdk/core/index.ts
Justin Hernandez 5305ef83fc Feat: Improved import export sorting for app and common (#833)
* save import sorting work

* remove dupe headers and fix type errors

* sort imports and exports

* fix errors from export sorting

* fix tests

* codex feedback

* fix exports

* fix exports and tweak test build

* fix export and format

* fix license headers

* fix app building and clean up test errors

* fix android local e2e test

* improve caching

* final fixes

* remove invalid option

* fix sorting and get random values loading

* fix import sorting
2025-08-06 15:18:42 -07:00

24 lines
816 B
TypeScript

import { SelfBackendVerifier } from './src/SelfBackendVerifier.js';
import { countryCodes } from '@selfxyz/common/constants';
import { getUniversalLink } from '@selfxyz/common/utils/appType';
import { countries } from '@selfxyz/common/constants';
import type { AttestationId, VerificationResult, VerificationConfig } from 'src/types/types.js';
import type { IConfigStorage } from 'src/store/interface.js';
import { DefaultConfigStore } from 'src/store/DefaultConfigStore.js';
import { AllIds } from 'src/utils/constants.js';
import { InMemoryConfigStore } from 'src/store/InMemoryConfigStore.js';
export {
SelfBackendVerifier,
countryCodes,
getUniversalLink,
countries,
AttestationId,
IConfigStorage,
DefaultConfigStore,
InMemoryConfigStore,
AllIds,
VerificationResult,
VerificationConfig,
};