Type Alias $UserTwitchAccountPayload<ExtArgs>

$UserTwitchAccountPayload<ExtArgs>: {
    composites: {};
    name: "UserTwitchAccount";
    objects: {
        user: $UserPayload<ExtArgs> | null;
    };
    scalars: GetPayloadResult<{
        accountId: string | null;
        chatRoomId: string | null;
        dbId: string;
        userId: string;
        username: string | null;
    }, ExtArgs["result"]["userTwitchAccount"]>;
}

Type Parameters