how to add awordpress plugin custom thumbnial

i am create a wordpress plugin, this plugin add custompost but this post not see featured image

    add_theme_support('post-thumbnails',array('km-lightbox','post'));
    add_action( 'init', 'create_posttype_light_box' );
    function create_posttype_light_box() {
  register_post_type( 'km-lightbox',
    array(
      'labels' => array(
        'name' => __( 'Lightboxs' ),
        'singular_name' => __( 'lightbox' )
      ),
      'public' => true,
      'supports'=> array('title', 'editor','thumbnail'  ),
      'has_archive' => true,
      'rewrite' => array('slug' => 'lightbox')
      )
  );
}

Related posts