Skip to content

Commit

Permalink
Move docs to declaration files
Browse files Browse the repository at this point in the history
  • Loading branch information
Maaaartin committed Oct 20, 2024
1 parent 1361348 commit 5342494
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export * as Util from './util';
export * as Commands from './commands/indexDocs';
export * as Commands from './commands';

export { Client } from './client';
export { Device } from './device';
Expand Down
2 changes: 1 addition & 1 deletion src/indexDocs.ts → src/indexDocs.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * as Commands from './commands/indexDocs';
export * as Commands from './commands';
export * as Client from './client';
export * as Logcat from './logcat';
export * as Util from './util/indexDocs';
Expand Down
2 changes: 1 addition & 1 deletion typedoc.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = {
excludePrivate: true,
excludeProtected: true,
out: './docs',
entryPoints: 'src/indexDocs.ts',
entryPoints: 'src/indexDocs.d.ts',
githubPages: true,
name: 'adb-ts'
};

0 comments on commit 5342494

Please sign in to comment.