From 2fe4573882f3045690a64d92a206606d24c68859 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Tue, 16 Dec 2025 00:27:49 +0100 Subject: Ignore the test images, add types --- dist/renderer.d.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'dist/renderer.d.ts') diff --git a/dist/renderer.d.ts b/dist/renderer.d.ts index eb4102a..bf14bfb 100644 --- a/dist/renderer.d.ts +++ b/dist/renderer.d.ts @@ -6,7 +6,12 @@ * @param {tConfiguration} configuration - Configuration object * @returns {Promise} */ -export function render(map: ParsedMap, ctx: CanvasRenderingContext2D, stageType: StageType, configuration: tConfiguration): Promise; +export function render( + map: ParsedMap, + ctx: CanvasRenderingContext2D, + stageType: StageType, + configuration: tConfiguration, +): Promise; export type tConfiguration = import("./configuration.js").tConfiguration; export type StageType = import("./stage_type.js").StageType; export type ParsedMap = import("wmap-parser").Map; -- cgit