Skip to content

Commit

Permalink
chore: fix docgen
Browse files Browse the repository at this point in the history
  • Loading branch information
luisbytes committed Mar 13, 2024
1 parent 48f8fd0 commit f88672b
Show file tree
Hide file tree
Showing 3 changed files with 3,580 additions and 10 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,25 +35,25 @@ To use this plugin you need to add the following permissions to the `AndroidMani
### getInfo()

```typescript
getInfo() => any
getInfo() => Promise<TelephonyInfo>
```

**Returns:** <code>any</code>
**Returns:** <code>Promise&lt;<a href="#telephonyinfo">TelephonyInfo</a>&gt;</code>

--------------------


### getNetworkType(...)

```typescript
getNetworkType(options?: { withBasicPermission?: boolean | undefined; } | undefined) => any
getNetworkType(options?: { withBasicPermission?: boolean | undefined; } | undefined) => Promise<{ type: TelephonyNetworkType; }>
```

| Param | Type |
| ------------- | ----------------------------------------------- |
| **`options`** | <code>{ withBasicPermission?: boolean; }</code> |

**Returns:** <code>any</code>
**Returns:** <code>Promise&lt;{ type: <a href="#telephonynetworktype">TelephonyNetworkType</a>; }&gt;</code>

--------------------

Expand Down
Loading

0 comments on commit f88672b

Please sign in to comment.