6989a98d75
- Arkitektur: docs/auth/passwordless-architecture.md - Backend: iom/quixzoom-auth-service/ (FastAPI + Redis) - Webb: quixzoom-market-pages/se/login/ (QR-kod + polling) - App: iom/quixzoom-app/src/features/auth/ (push + deep links) Flöde: QR-kod → app-godkännande → webb-inloggad
7 lines
415 B
TypeScript
7 lines
415 B
TypeScript
import type { PackageJson } from './types.js';
|
|
export type * from './types.js';
|
|
export declare function isNpm(): boolean | undefined;
|
|
export declare function isPnp(): boolean;
|
|
export declare function checkAndPreparePackage(packageName: string, version?: string, checkVersion?: boolean): Promise<void>;
|
|
export declare function checkAndPreparePackage(packageJson: PackageJson, checkVersion?: boolean): Promise<void>;
|