@rbxts/types 1.0.950 → 1.0.952
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/include/generated/None.d.ts +198 -42
- package/include/generated/PluginSecurity.d.ts +107 -19
- package/include/generated/enums.d.ts +375 -10
- package/include/roblox.d.ts +1 -2
- package/package.json +1 -1
package/include/roblox.d.ts
CHANGED
|
@@ -3176,8 +3176,7 @@ interface SettableCores {
|
|
|
3176
3176
|
AddAvatarContextMenuOption: Enum.AvatarContextMenuOption | [string, BindableFunction];
|
|
3177
3177
|
RemoveAvatarContextMenuOption: Enum.AvatarContextMenuOption | [string, BindableFunction];
|
|
3178
3178
|
CoreGuiChatConnections:
|
|
3179
|
-
|
|
3180
|
-
| Map<string, BindableEvent | BindableFunction>;
|
|
3179
|
+
{ [name: string]: BindableEvent | BindableFunction } | Map<string, BindableEvent | BindableFunction>;
|
|
3181
3180
|
VREnableControllerModels: boolean;
|
|
3182
3181
|
VRLaserPointerMode: "Disabled" | "Pointer" | "Navigation" | "Hidden";
|
|
3183
3182
|
}
|