Skip to content

Commit 0f01a2d

Browse files
Use type declaration instead of interface
1 parent fdbf433 commit 0f01a2d

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

resources/js/pages/auth/login.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { Input } from '@/components/ui/input';
1010
import { Label } from '@/components/ui/label';
1111
import AuthLayout from '@/layouts/auth-layout';
1212

13-
interface LoginForm {
13+
type LoginForm = {
1414
email: string;
1515
password: string;
1616
remember: boolean;

resources/js/pages/auth/register.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { Input } from '@/components/ui/input';
99
import { Label } from '@/components/ui/label';
1010
import AuthLayout from '@/layouts/auth-layout';
1111

12-
interface RegisterForm {
12+
type RegisterForm = {
1313
name: string;
1414
email: string;
1515
password: string;

resources/js/pages/auth/reset-password.tsx

+5-4
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,19 @@ import { Input } from '@/components/ui/input';
88
import { Label } from '@/components/ui/label';
99
import AuthLayout from '@/layouts/auth-layout';
1010

11-
interface ResetPasswordProps {
11+
type ResetPasswordForm = {
1212
token: string;
1313
email: string;
14+
password: string;
15+
password_confirmation: string;
1416
}
1517

16-
interface ResetPasswordForm {
18+
interface ResetPasswordProps {
1719
token: string;
1820
email: string;
19-
password: string;
20-
password_confirmation: string;
2121
}
2222

23+
2324
export default function ResetPassword({ token, email }: ResetPasswordProps) {
2425
const { data, setData, post, processing, errors, reset } = useForm<ResetPasswordForm>({
2526
token: token,

0 commit comments

Comments
 (0)