1
0
Fork 0
Code Issues Pull requests Projects Releases Packages Wiki Activity Actions Pages

extract server transform and validation helpers

This commit is contained in:
super-jalawii 2026-06-27 11:10:23 -04:00
parent aea2c9d56b
commit e79bc2e339
10 changed files with 373 additions and 139 deletions

3
server/contentTransforms.d.ts vendored Normal file
View file

@ -0,0 +1,3 @@
export function normalizeBackgroundTileId(value: unknown, idToSymbol?: Map<string, unknown> | null): string;
export function areRowsOnlyFillChar(rows: unknown, fillChar?: string): boolean;
export function resolveContentPath(contentRoot: string, relativePath: string): string;