Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions include/customDefinitions.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,13 +152,11 @@ interface CaptureService extends Instance {
interface CatalogPages extends Pages<SearchCatalogResult> {}

interface OutfitPages
extends Pages<
ReadonlyArray<{
Id: number;
Name: string;
IsEditable: boolean;
}>
> {}
extends Pages<{

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Regenerate the published OutfitPages declarations

This override is only generator input: include/roblox.d.ts:5 and plugin.d.ts:2 load the committed generated files, while package.json:48 excludes include/customDefinitions.d.ts from the package. In this commit the generated outputs still declare OutfitPages extends Pages<ReadonlyArray<...>> in include/generated/None.d.ts:34150 and include/generated/PluginSecurity.d.ts:10057, so users of the published typings will still see the old nested-array type unless those generated files are regenerated and committed with this change.

Useful? React with 👍 / 👎.

Id: number;
Name: string;
IsEditable: boolean;
}> {}

interface BadgeService extends Instance {
/** @server */
Expand Down
Loading