native-fn
Version:
37 lines (30 loc) • 957 B
Markdown
# native-fn API Reference
<br>



## Overview
---
## Install
npm
```bash
npm i native-fn
```
yarn
```bash
yarn add native-fn
```
cdn
```html
<script src='https://unpkg.com/native-fn'></script>
```
## Interface
```typescript
interface Native {
Index: Index
}
interface Index {
open: (options: AppOpenOptions, target?: WindowProxy) => Promise<AppOpenState>;
messenger: Messenger;
}
```