strip html from description

This commit is contained in:
2023-11-24 14:39:28 -05:00
parent f7c6034fb0
commit 5f6e638903
526 changed files with 4373 additions and 23270 deletions
+5
View File
@@ -0,0 +1,5 @@
export type NoReadonly<T extends {
[x: string]: any;
}> = {
-readonly [X in keyof T]: T[X];
};