is_singular() equivalent for backend

Here’s what I use now:

function custom_singular_backend(){
    $screen = get_current_screen();

    if ( ( $screen->base == 'post' ) && ( $screen->post_type == POSTTYPE )  ){
        //...
    }
}
add_action( 'current_screen','custom_singular_backend');