settings_org: Convert module to typescript.

This commit is contained in:
evykassirer
2024-10-02 22:13:43 -07:00
committed by Tim Abbott
parent 39137e67f7
commit 269066e10a
9 changed files with 367 additions and 245 deletions

View File

@@ -22,7 +22,7 @@ export const user_group_schema = raw_user_group_schema.extend({
});
export type UserGroup = z.infer<typeof user_group_schema>;
type UserGroupForDropdownListWidget = {
export type UserGroupForDropdownListWidget = {
name: string;
unique_id: number;
};