Skip to content

Commit

Permalink
Convert com.facebook.react.devsupport.IInspectorPackagerConnection
Browse files Browse the repository at this point in the history
…to Kotlin (facebook#49092)

Summary:
Pull Request resolved: facebook#49092

Just another Kotlin migration for the devsupport package.

Changelog:
[Internal] [Changed] -

Reviewed By: huntie

Differential Revision: D68954220

fbshipit-source-id: fbdf391152578ba5cc0b0a9b303a5a6700bfdb0e
  • Loading branch information
cortinico authored and facebook-github-bot committed Feb 3, 2025
1 parent 17f7bf3 commit bdbd0fa
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

package com.facebook.react.devsupport

internal interface IInspectorPackagerConnection {
fun connect()

fun closeQuietly()

fun sendEventToAllConnections(event: String?)
}

0 comments on commit bdbd0fa

Please sign in to comment.