init preact testing
All checks were successful
Code quality checks / biome (push) Successful in 10s

This commit is contained in:
creations 2025-04-13 10:57:52 -04:00
parent a646607597
commit bf85b4d81c
Signed by: creations
GPG key ID: 8F553AA4320FC711
8 changed files with 92 additions and 2 deletions

6
types/preact.d.ts vendored Normal file
View file

@ -0,0 +1,6 @@
type Props = {
title?: string;
styles?: string[];
scripts?: (string | [string, boolean])[];
children?: preact.ComponentChildren;
};