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
14 lines
846 B
TypeScript
14 lines
846 B
TypeScript
import type { NapiInfo, PackageJson } from './types.js';
|
|
export declare function getGlobalNpmRegistry(): string;
|
|
export declare function removeRecursive(dir: string): void;
|
|
export declare function downloadedNodePath(name: string, subpath: string): string;
|
|
export declare function getNapiInfoFromPackageJson(packageJson: PackageJson, checkVersion: true): NapiInfo & {
|
|
version: string;
|
|
};
|
|
export declare function getNapiInfoFromPackageJson(packageJson: PackageJson, checkVersion?: boolean): NapiInfo;
|
|
export declare function getNapiNativeTarget(): string[] | string;
|
|
export declare function getNapiNativeTargets(): string[];
|
|
export declare function getErrorMessage(err: unknown): string;
|
|
export declare function errorLog(message: string, ...args: unknown[]): void;
|
|
export declare function errorMessage(message: string, extra?: string): string;
|