dashpresshq/dashpress

View on GitHub
src/shared/form-schemas/users/index.d.ts

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
export type ICreateUserForm = {
  name: string;
  username: string;
  role: string;
  password: string;
};

export type IUpdateUserForm = {
  name: string;
  role: string;
};