fix(components/tiles): no-explicit-any ignores

This commit is contained in:
mikhail "synzr" 2025-12-02 09:19:54 +05:00
parent 9a83871571
commit c9ef692c9a
2 changed files with 2 additions and 2 deletions

View file

@ -105,7 +105,7 @@ Metro-like tile. Must be in a group to display correctly.
/** /**
* Pages. * Pages.
*/ */
children: () => any; children: () => any; // eslint-disable-line @typescript-eslint/no-explicit-any
} = $props(); } = $props();
/** /**

View file

@ -38,7 +38,7 @@ A group of tiles. Places them correctly in a grid.
/** /**
* Tiles. * Tiles.
*/ */
children: () => any; children: () => any; // eslint-disable-line @typescript-eslint/no-explicit-any
} = $props(); } = $props();
// NOTE: to make it usable for small tiles // NOTE: to make it usable for small tiles