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
15 lines
635 B
TypeScript
15 lines
635 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2023 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
import type { ChromeHeadlessShellSettings, ChromeSettings, Configuration, FirefoxSettings } from 'puppeteer-core';
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare function getBrowserSetting(browser: 'chrome' | 'chrome-headless-shell' | 'firefox', configuration: Configuration, defaultConfig?: ChromeSettings | ChromeHeadlessShellSettings | FirefoxSettings): ChromeSettings | ChromeHeadlessShellSettings | FirefoxSettings;
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare const getConfiguration: () => Promise<Configuration>;
|
|
//# sourceMappingURL=getConfiguration.d.ts.map
|