Skip to content

Commit

Permalink
update typings
Browse files Browse the repository at this point in the history
  • Loading branch information
frrazer committed May 27, 2024
1 parent d86e7c7 commit b8ae398
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 18 deletions.
14 changes: 5 additions & 9 deletions typings/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -606,15 +606,11 @@ declare module "noblox.js" {
}

interface DeveloperProduct {
ProductId: number,
DeveloperProductId: number,
Name: string,
Description: string,
IconImageAssetId: number,
displayName: string,
displayDescription: string,
displayIcon: number,
PriceInRobux: number
id: number;
name: string;
Description: string;
shopId: number;
iconImageAssetId: number | null;
}

interface DeveloperProductsResult {
Expand Down
14 changes: 5 additions & 9 deletions typings/jsDocs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -812,15 +812,11 @@ type PlaceInformation = {
* @typedef
*/
type DeveloperProduct = {
ProductId: number,
DeveloperProductId: number,
Name: string,
Description: string,
IconImageAssetId: number,
displayName: string,
displayDescription: string,
displayIcon: number,
PriceInRobux: number
id: number;
name: string;
Description: string;
shopId: number;
iconImageAssetId: number | null;
}

/**
Expand Down

0 comments on commit b8ae398

Please sign in to comment.