18 lines
421 B
TypeScript
18 lines
421 B
TypeScript
/**
|
|
* Facebook identity 绑定响应 DTO
|
|
*/
|
|
import {
|
|
FacebookIdentityResponseSchema,
|
|
} from "@/data/schemas/auth/response/facebook_identity_response";
|
|
import {
|
|
createSchemaDto,
|
|
type SchemaDto,
|
|
} from "@/data/dto/schema_dto";
|
|
|
|
export type FacebookIdentityResponse = SchemaDto<
|
|
typeof FacebookIdentityResponseSchema
|
|
>;
|
|
export const FacebookIdentityResponse = createSchemaDto(
|
|
FacebookIdentityResponseSchema,
|
|
);
|