brief-05-back/src/interfaces/IReqEditUserData.ts
Mathis 56bfd8cd0d
type: style
scope: services, interfaces

subject: Apply code formatting

- Correct indentation and formatting to match code style standards in multiple 'interfaces' and 'services' files.
- Also ensure lines at the end of the files.

Signed-off-by: Mathis <yidhra@tuta.io>
2024-04-30 10:55:37 +02:00

7 lines
122 B
TypeScript

export interface IReqEditUserData {
firstName?: string;
lastName?: string;
displayName?: string;
password?: string;
}