6 lines
122 B
TypeScript
6 lines
122 B
TypeScript
import { IsObject } from "class-validator";
|
|
|
|
export class PasskeyLoginDto {
|
|
@IsObject()
|
|
credentialResponse: any;
|
|
} |