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
11 lines
282 B
TypeScript
11 lines
282 B
TypeScript
export default class LinearScale extends LinearScaleBase {
|
|
static id: string;
|
|
/**
|
|
* @type {any}
|
|
*/
|
|
static defaults: any;
|
|
getPixelForValue(value: any): number;
|
|
getValueForPixel(pixel: any): number;
|
|
}
|
|
import LinearScaleBase from "./scale.linearbase.js";
|