chore(api): fix documentation tags

This commit is contained in:
Lucas Nogueira 2021-12-06 16:49:09 -03:00
parent be5cb571c3
commit 508e815247
No known key found for this signature in database
GPG Key ID: 2714B66BCFB01F7F
4 changed files with 4 additions and 6 deletions

View File

@ -2,8 +2,6 @@
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
/** @ignore */ /** */
import 'regenerator-runtime/runtime'
import * as app from './app'
import * as cli from './cli'
@ -21,6 +19,8 @@ import * as tauri from './tauri'
import * as updater from './updater'
import * as window from './window'
import * as os from './os'
/** @ignore */
const invoke = tauri.invoke
export {

View File

@ -2,8 +2,6 @@
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
/** @ignore */
import { WindowLabel } from '../window'
import { invokeTauriCommand } from './tauri'

View File

@ -322,7 +322,7 @@ async function getClient(options?: ClientOptions): Promise<Client> {
}).then((id) => new Client(id))
}
/** @ignore */
/** @internal */
let defaultClient: Client | null = null
/**

View File

@ -10,7 +10,7 @@
* ```typescript
* import { app, dialog, event, fs, globalShortcut } from '@tauri-apps/api'
* ```
* @packageDocumentation
* @module
*/
export * from './bundle'