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
587 B
TypeScript
15 lines
587 B
TypeScript
/**
|
|
* @param {PointElement[] | { x: number; y: number; }} boundary
|
|
* @param {LineElement} line
|
|
* @return {LineElement?}
|
|
*/
|
|
export function _createBoundaryLine(boundary: PointElement[] | {
|
|
x: number;
|
|
y: number;
|
|
}, line: LineElement): LineElement | null;
|
|
export function _shouldApplyFill(source: any): boolean;
|
|
export type Chart = import('../../core/core.controller.js').default;
|
|
export type Scale = import('../../core/core.scale.js').default;
|
|
export type PointElement = import('../../elements/element.point.js').default;
|
|
import { LineElement } from "../../elements/index.js";
|