Skip to content

Commit

Permalink
fix: remove typings export (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
FC5570 authored Jul 21, 2024
1 parent 3ab00a3 commit 6cce0e0
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .cliff-jumperrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://raw.githubusercontent.com/favware/cliff-jumper/main/assets/cliff-jumper.schema.json",
"name": "hypixel.ts",
"packagePath": ".",
"dryRun": true,
"dryRun": false,
"commitMessageTemplate": "chore(release): release {{new-version}}",
"tagTemplate": "v{{new-version}}"
}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.env*
*.gz
node_modules/
docs/
docs/
dist/
1 change: 0 additions & 1 deletion src/lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@ export * from './Client';
export * from './rest/index';
export * from './managers/index';
export * from './classes/index';
export * from './typings/index';
2 changes: 2 additions & 0 deletions src/lib/typings/classes/APIGuild.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import type { Guild } from '../../classes/Guild';

/**
* The Guild object returned from the API (in JSON) which is converted to @see {@link Guild} class.
* @category Interfaces
Expand Down
2 changes: 2 additions & 0 deletions src/lib/typings/classes/APIPlayer.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import type { Player } from '../../classes/Player';

/**
* The Player object returned from the API (in JSON) which is converted to the @see {@link Player} class.
* @category Interfaces
Expand Down
2 changes: 2 additions & 0 deletions src/lib/typings/classes/APISkyBlockAuction.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import type { SkyBlockAuction } from '../../classes/SkyBlockAuction';

/**
* The Auction object returned from the API (in JSON) which is converted to the @see {@link SkyBlockAuction} class.
* @category Interfaces
Expand Down
2 changes: 2 additions & 0 deletions src/lib/typings/classes/APISkyBlockProfile.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import type { SkyBlockProfile } from '../../classes/SkyBlockProfile';

/**
* The Profile object returned from the API (in JSON) which is converted to the @see {@link SkyBlockProfile} class.
* @category Interfaces
Expand Down
2 changes: 2 additions & 0 deletions src/lib/typings/classes/Util.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import type { Util } from '../../classes/Util';

/**
* Response returned by mojang API for user uuid lookup
* @category Interfaces
Expand Down
2 changes: 2 additions & 0 deletions src/lib/typings/managers/PlayerManager.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import type { PlayerManager } from '../../managers/PlayerManager';

/**
* Recently played games returned by hypixel API
* @category Interfaces
Expand Down
2 changes: 2 additions & 0 deletions src/lib/typings/managers/ResourceManager.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import type { ResourceManager } from '../../managers/ResourceManager';

/**
* All other responses extend this interface as they have the common property 'lastUpdated'.
* @category Interfaces
Expand Down
2 changes: 1 addition & 1 deletion typedoc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"entryPoints": ["src/index.ts"],
"entryPoints": ["src/index.ts", "src/lib/typings/index.ts"],
"cleanOutputDir": true,
"excludeExternals": true,
"out": "docs",
Expand Down

0 comments on commit 6cce0e0

Please sign in to comment.