mirror of
https://github.com/selfxyz/self.git
synced 2026-04-05 03:00:53 -04:00
* chore: export getUniversalLink * chore: export universal link function from the angular sdk
29 lines
652 B
TypeScript
29 lines
652 B
TypeScript
/*
|
|
* Public API Surface of @selfxyz/qrcode-angular
|
|
*/
|
|
|
|
// Components
|
|
export * from './lib/components/self-qrcode/self-qrcode.component';
|
|
export * from './lib/components/led/led.component';
|
|
|
|
// Services
|
|
export * from './lib/services/websocket.service';
|
|
|
|
// Utils
|
|
export * from './lib/utils/utils';
|
|
export * from './lib/utils/styles';
|
|
export type { WebAppInfo } from './lib/utils/websocket';
|
|
|
|
// Providers
|
|
export { provideSelfLottie } from './lib/providers';
|
|
|
|
// Re-export types from common
|
|
export {
|
|
type SelfAppDisclosureConfig,
|
|
getUniversalLink,
|
|
countryCodes,
|
|
SelfAppBuilder,
|
|
type Country3LetterCode,
|
|
type SelfApp,
|
|
} from './lib/common';
|