Skip to content

Commit

Permalink
correct typings
Browse files Browse the repository at this point in the history
  • Loading branch information
frrazer committed May 30, 2024
1 parent d91296c commit 50b2af3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions typings/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -607,6 +607,7 @@ declare module "noblox.js" {

interface DeveloperProduct {
id: number;
productId: number;
name: string;
description: string;
iconImageAssetId: number | null;
Expand Down
4 changes: 2 additions & 2 deletions typings/jsDocs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -813,9 +813,9 @@ type PlaceInformation = {
*/
type DeveloperProduct = {
id: number;
productId: number;
name: string;
Description: string;
shopId: number;
description: string;
iconImageAssetId: number | null;
}

Expand Down

0 comments on commit 50b2af3

Please sign in to comment.