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
38 lines
940 B
TypeScript
38 lines
940 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2017 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
export * from 'puppeteer-core';
|
|
import { PuppeteerNode } from 'puppeteer-core';
|
|
/**
|
|
* @public
|
|
*/
|
|
declare const puppeteer: PuppeteerNode;
|
|
export declare const
|
|
/**
|
|
* @public
|
|
*/
|
|
connect: (options: import("puppeteer-core").ConnectOptions) => Promise<import("puppeteer-core").Browser>,
|
|
/**
|
|
* @public
|
|
*/
|
|
defaultArgs: (options?: import("puppeteer-core").LaunchOptions) => Promise<string[]>,
|
|
/**
|
|
* @public
|
|
*/
|
|
executablePath: {
|
|
(channel: import("puppeteer-core").ChromeReleaseChannel): Promise<string>;
|
|
(options: import("puppeteer-core").LaunchOptions): Promise<string>;
|
|
(): Promise<string>;
|
|
},
|
|
/**
|
|
* @public
|
|
*/
|
|
launch: (options?: import("puppeteer-core").LaunchOptions) => Promise<import("puppeteer-core").Browser>,
|
|
/**
|
|
* @public
|
|
*/
|
|
trimCache: () => Promise<void>;
|
|
export default puppeteer;
|
|
//# sourceMappingURL=puppeteer.d.ts.map
|