Add UI input & textarea

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
This commit is contained in:
Jonathan
2025-05-21 11:02:49 +02:00
committed by Sacha Al Himdani
parent a86181c83d
commit 15cf471454
35 changed files with 3094 additions and 14933 deletions

View File

@@ -1,6 +1,6 @@
/**
* A type safe version of Object.keys
*/
export function objectKeys<T>(object: T) {
export function objectKeys<T extends Record<string, unknown>>(object: T) {
return Object.keys(object) as (keyof T)[];
}