Files
boc/landvex/node_modules/chart.js/dist/scales/scale.logarithmic.d.ts
T
Bernt 6989a98d75 feat: Passwordless cross-device authentication
- 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
2026-07-07 07:11:50 +00:00

26 lines
648 B
TypeScript

export default class LogarithmicScale extends Scale {
static id: string;
/**
* @type {any}
*/
static defaults: any;
/** @type {number} */
start: number;
/** @type {number} */
end: number;
/** @type {number} */
_startValue: number;
_valueRange: number;
parse(raw: any, index: any): number;
_zero: boolean;
handleTickRangeOptions(): void;
/**
* @param {number} value
* @return {string}
*/
getLabelForValue(value: number): string;
getPixelForValue(value: any): number;
getValueForPixel(pixel: any): number;
}
import Scale from "../core/core.scale.js";