Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnyparris committed Feb 26, 2024
1 parent 8428733 commit c932319
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,10 @@ interface Manager {
invalidateCache(key: string): Promise<void>
registerEmbed(name: string, callback: EmbedCallback): boolean | undefined
registerWidget(callback: WidgetCallback): boolean | undefined
fetch(input: RequestInfo | URL, init?: RequestInit): Promise<Response> | undefined
fetch(
input: RequestInfo | URL,
init?: RequestInit
): Promise<Response> | undefined
ext?: Record<string, any>
}

Expand Down Expand Up @@ -111,7 +114,7 @@ type Permission =
| 'client_network_requests'
| 'serve_static_files'
| 'provide_server_functionality'
| "server_network_requests"
| 'server_network_requests'

export {
ComponentSettings,
Expand Down

0 comments on commit c932319

Please sign in to comment.