mirror of
https://github.com/selfxyz/self.git
synced 2026-04-05 03:00:53 -04:00
* 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
24 lines
816 B
TypeScript
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,
|
|
};
|