Skip to content

Commit

Permalink
Remove unused dependencies from facebook/react/interfaces (#47115)
Browse files Browse the repository at this point in the history
Summary:

Remove unused dependencies from facebook/react/interfaces

changelog: [internal] internal

Reviewed By: cortinico

Differential Revision: D64585748
  • Loading branch information
mdvacca authored and facebook-github-bot committed Oct 18, 2024
1 parent 56c133d commit cab2377
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,33 +17,33 @@ public interface ReactSurface {
// the API of this interface will be completed as we analyze and refactor API of ReactSurface,
// ReactRootView, etc.

// Returns surface ID of this surface
/** Returns surface ID of this surface */
public val surfaceID: Int

// Returns module name of this surface
/** Returns module name of this surface */
public val moduleName: String

// Returns whether the surface is running or not
/** Returns whether the surface is running or not */
public val isRunning: Boolean

// Returns React root view of this surface
/** Returns React root view of this surface */
public val view: ViewGroup?

// Returns context associated with the surface
/** Returns context associated with the surface */
public val context: Context

// Prerender this surface
/** Prerender this surface */
public fun prerender(): TaskInterface<Void>

// Start running this surface
/** Start running this surface */
public fun start(): TaskInterface<Void>

// Stop running this surface
/** Stop running this surface */
public fun stop(): TaskInterface<Void>

// Clear surface
/** Clear surface */
public fun clear()

// Detach surface from Host
/** Detach surface from Host */
public fun detach()
}

0 comments on commit cab2377

Please sign in to comment.