@farcaster/frame-core 0.0.14 → 0.0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/types.ts CHANGED
@@ -86,7 +86,7 @@ export type ReadyOptions = {
86
86
 
87
87
  export const DEFAULT_READY_OPTIONS: ReadyOptions = {
88
88
  disableNativeGestures: false,
89
- }
89
+ };
90
90
 
91
91
  export type FrameHost = {
92
92
  context: FrameContext;
@@ -104,7 +104,7 @@ export type FrameEthProviderEventData = {
104
104
  } & EthProviderWireEvent;
105
105
 
106
106
  export type RpcTransport = (
107
- request: RpcRequest.RpcRequest
107
+ request: RpcRequest.RpcRequest,
108
108
  ) => Promise<RpcResponse.RpcResponse>;
109
109
 
110
110
  export type ProviderRpcError = {
@@ -137,5 +137,5 @@ export type EthProviderWireEvent =
137
137
 
138
138
  export type EmitEthProvider = <event extends EthProviderWireEvent["event"]>(
139
139
  event: event,
140
- params: Extract<EthProviderWireEvent, { event: event }>["params"]
140
+ params: Extract<EthProviderWireEvent, { event: event }>["params"],
141
141
  ) => void;