@talabes/football-lineup-generator
Version:
A TypeScript library for generating visual football lineup diagrams from team positioning data. Fork of ncamaa/football-lineup-generator with bug fixes and improvements.
3 lines (2 loc) • 338 B
TypeScript
import type { LineupData } from '../types.js';
export declare function drawSubstitutesSplit(ctx: CanvasRenderingContext2D, lineupData: LineupData, width: number, awayPitchOffset: number, homeTeamColor: string, awayTeamColor: string, playerCircleSize: number, showJerseyNumbers: boolean, showPlayerNames: boolean, fontSize: number): void;