backend/types/preact.d.ts
creations bf85b4d81c
All checks were successful
Code quality checks / biome (push) Successful in 10s
init preact testing
2025-04-13 10:57:52 -04:00

6 lines
136 B
TypeScript

type Props = {
title?: string;
styles?: string[];
scripts?: (string | [string, boolean])[];
children?: preact.ComponentChildren;
};