config: 🔧 components and containers to TS

This commit is contained in:
Ravinou 2024-12-29 13:28:39 +01:00
commit 5e66de2f64
No known key found for this signature in database
GPG key ID: EEEE670C40F6A4D7
43 changed files with 2 additions and 0 deletions

1
types/index.ts Normal file
View file

@ -0,0 +1 @@
export * from './optional';

1
types/optional.ts Normal file
View file

@ -0,0 +1 @@
export type Optional<T> = T | undefined;