@rbxts/types 1.0.808 → 1.0.809

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.
@@ -43,6 +43,7 @@ interface Services {
43
43
  ConversationalAIAcceptanceService: ConversationalAIAcceptanceService;
44
44
  CoreScriptDebuggingManagerHelper: CoreScriptDebuggingManagerHelper;
45
45
  CreationDBService: CreationDBService;
46
+ CreatorStoreService: CreatorStoreService;
46
47
  CrossDMScriptChangeListener: CrossDMScriptChangeListener;
47
48
  DataModelPatchService: DataModelPatchService;
48
49
  DataStoreService: DataStoreService;
@@ -292,6 +293,7 @@ interface CreatableInstances {
292
293
  EqualizerSoundEffect: EqualizerSoundEffect;
293
294
  EulerRotationCurve: EulerRotationCurve;
294
295
  ExperienceInviteOptions: ExperienceInviteOptions;
296
+ ExplorerFilterInstance: ExplorerFilterInstance;
295
297
  Explosion: Explosion;
296
298
  FaceControls: FaceControls;
297
299
  FileMesh: FileMesh;
@@ -500,6 +502,7 @@ interface Instances extends Services, CreatableInstances {
500
502
  CharacterAppearance: CharacterAppearance;
501
503
  ChatInputBarConfiguration: ChatInputBarConfiguration;
502
504
  ChatWindowConfiguration: ChatWindowConfiguration;
505
+ ChatWindowMessageProperties: ChatWindowMessageProperties;
503
506
  Clothing: Clothing;
504
507
  CloudLocalizationTable: CloudLocalizationTable;
505
508
  Collaborator: Collaborator;
@@ -525,6 +528,7 @@ interface Instances extends Services, CreatableInstances {
525
528
  DebuggerVariable: DebuggerVariable;
526
529
  DynamicRotate: DynamicRotate;
527
530
  EmotesPages: EmotesPages;
531
+ ExplorerFilterAutocompleterInstance: ExplorerFilterAutocompleterInstance;
528
532
  FaceInstance: FaceInstance;
529
533
  FacialAnimationStreamingServiceStats: FacialAnimationStreamingServiceStats;
530
534
  FacialAnimationStreamingSubsessionStats: FacialAnimationStreamingSubsessionStats;
@@ -9795,6 +9799,17 @@ interface CreationDBService extends Instance {
9795
9799
  readonly _nominal_CreationDBService: unique symbol;
9796
9800
  }
9797
9801
 
9802
+ interface CreatorStoreService extends Instance {
9803
+ /**
9804
+ * **DO NOT USE!**
9805
+ *
9806
+ * This field exists to force TypeScript to recognize this as a nominal type
9807
+ * @hidden
9808
+ * @deprecated
9809
+ */
9810
+ readonly _nominal_CreatorStoreService: unique symbol;
9811
+ }
9812
+
9798
9813
  interface CrossDMScriptChangeListener extends Instance {
9799
9814
  /**
9800
9815
  * **DO NOT USE!**
@@ -9990,14 +10005,35 @@ interface EditableMesh extends DataModelMesh {
9990
10005
  GetAdjacentVertices(this: EditableMesh, vertexId: number): Array<number>;
9991
10006
  GetColor(this: EditableMesh, colorId: number): Color3 | undefined;
9992
10007
  GetColorAlpha(this: EditableMesh, colorId: number): number | undefined;
10008
+ /**
10009
+ * Tags: CustomLuaState
10010
+ */
9993
10011
  GetColors(this: EditableMesh): unknown;
10012
+ /**
10013
+ * Tags: CustomLuaState
10014
+ */
9994
10015
  GetFaceColors(this: EditableMesh, faceId: number): unknown;
10016
+ /**
10017
+ * Tags: CustomLuaState
10018
+ */
9995
10019
  GetFaceNormals(this: EditableMesh, faceId: number): unknown;
10020
+ /**
10021
+ * Tags: CustomLuaState
10022
+ */
9996
10023
  GetFaceUVs(this: EditableMesh, faceId: number): unknown;
10024
+ /**
10025
+ * Tags: CustomLuaState
10026
+ */
9997
10027
  GetFaceVertices(this: EditableMesh, faceId: number): unknown;
10028
+ /**
10029
+ * Tags: CustomLuaState
10030
+ */
9998
10031
  GetFaces(this: EditableMesh): unknown;
9999
10032
  GetFacesWithAttribute(this: EditableMesh, id: number): unknown;
10000
10033
  GetNormal(this: EditableMesh, normalId: number): Vector3 | undefined;
10034
+ /**
10035
+ * Tags: CustomLuaState
10036
+ */
10001
10037
  GetNormals(this: EditableMesh): unknown;
10002
10038
  GetPosition(this: EditableMesh, vertexId: number): Vector3;
10003
10039
  /**
@@ -10009,6 +10045,9 @@ interface EditableMesh extends DataModelMesh {
10009
10045
  */
10010
10046
  GetTriangles(this: EditableMesh): Array<number>;
10011
10047
  GetUV(this: EditableMesh, uvId: number): Vector2 | undefined;
10048
+ /**
10049
+ * Tags: CustomLuaState
10050
+ */
10012
10051
  GetUVs(this: EditableMesh): unknown;
10013
10052
  /**
10014
10053
  * @deprecated
@@ -10040,9 +10079,21 @@ interface EditableMesh extends DataModelMesh {
10040
10079
  ResetNormal(this: EditableMesh, normalId: number): void;
10041
10080
  SetColor(this: EditableMesh, colorId: number, color: Color3): void;
10042
10081
  SetColorAlpha(this: EditableMesh, colorId: number, alpha: number): void;
10082
+ /**
10083
+ * Tags: CustomLuaState
10084
+ */
10043
10085
  SetFaceColors(this: EditableMesh, faceId: number, ids: Array<any>): void;
10086
+ /**
10087
+ * Tags: CustomLuaState
10088
+ */
10044
10089
  SetFaceNormals(this: EditableMesh, faceId: number, ids: Array<any>): void;
10090
+ /**
10091
+ * Tags: CustomLuaState
10092
+ */
10045
10093
  SetFaceUVs(this: EditableMesh, faceId: number, ids: Array<any>): void;
10094
+ /**
10095
+ * Tags: CustomLuaState
10096
+ */
10046
10097
  SetFaceVertices(this: EditableMesh, faceId: number, ids: Array<any>): void;
10047
10098
  SetNormal(this: EditableMesh, normalId: number, normal: Vector3): void;
10048
10099
  SetPosition(this: EditableMesh, vertexId: number, p: Vector3): void;
@@ -11150,6 +11201,42 @@ interface ExperienceStateCaptureService extends Instance {
11150
11201
  readonly _nominal_ExperienceStateCaptureService: unique symbol;
11151
11202
  }
11152
11203
 
11204
+ interface ExplorerFilterAutocompleterInstance extends Instance {
11205
+ /**
11206
+ * **DO NOT USE!**
11207
+ *
11208
+ * This field exists to force TypeScript to recognize this as a nominal type
11209
+ * @hidden
11210
+ * @deprecated
11211
+ */
11212
+ readonly _nominal_ExplorerFilterAutocompleterInstance: unique symbol;
11213
+ /**
11214
+ * Tags: NotReplicated
11215
+ */
11216
+ readonly ReplaceRange: Vector2;
11217
+ /**
11218
+ * Tags: NotReplicated
11219
+ */
11220
+ readonly RequiresOutsideContext: boolean;
11221
+ GetSuggestions(this: ExplorerFilterAutocompleterInstance): unknown;
11222
+ }
11223
+
11224
+ interface ExplorerFilterInstance extends Instance {
11225
+ /**
11226
+ * **DO NOT USE!**
11227
+ *
11228
+ * This field exists to force TypeScript to recognize this as a nominal type
11229
+ * @hidden
11230
+ * @deprecated
11231
+ */
11232
+ readonly _nominal_ExplorerFilterInstance: unique symbol;
11233
+ GetAutocompleter(this: ExplorerFilterInstance): ExplorerFilterAutocompleterInstance;
11234
+ GetErrors(this: ExplorerFilterInstance): unknown;
11235
+ GetLexemes(this: ExplorerFilterInstance): unknown;
11236
+ InstancePassesFilter(this: ExplorerFilterInstance, instance: Instance): boolean;
11237
+ SetFilter(this: ExplorerFilterInstance, search: string): void;
11238
+ }
11239
+
11153
11240
  /** An Explosion applies force to `BaseParts` within the explosion's [Explosion.BlastRadius](https://developer.roblox.com/en-us/api-reference/property/Explosion/BlastRadius). This force breaks joints between parts and kills [Humanoid](https://developer.roblox.com/en-us/api-reference/class/Humanoid) characters not protected by a [ForceField](https://developer.roblox.com/en-us/api-reference/class/ForceField).
11154
11241
  *
11155
11242
  * If an explosion is instanced whilst the game is running, it will destroy itself shortly afterwards meaning they do not need to be cleaned up using the [Debris](https://developer.roblox.com/en-us/api-reference/class/Debris) service.
@@ -35190,6 +35277,7 @@ interface TextChatMessage extends Instance {
35190
35277
  */
35191
35278
  readonly _nominal_TextChatMessage: unique symbol;
35192
35279
  BubbleChatMessageProperties: BubbleChatMessageProperties | undefined;
35280
+ ChatWindowMessageProperties: ChatWindowMessageProperties | undefined;
35193
35281
  MessageId: string;
35194
35282
  Metadata: string;
35195
35283
  PrefixText: string;
@@ -35215,6 +35303,23 @@ interface TextChatMessageProperties extends Instance {
35215
35303
  Translation: string;
35216
35304
  }
35217
35305
 
35306
+ interface ChatWindowMessageProperties extends TextChatMessageProperties {
35307
+ /**
35308
+ * **DO NOT USE!**
35309
+ *
35310
+ * This field exists to force TypeScript to recognize this as a nominal type
35311
+ * @hidden
35312
+ * @deprecated
35313
+ */
35314
+ readonly _nominal_ChatWindowMessageProperties: unique symbol;
35315
+ FontFace: Font;
35316
+ PrefixTextProperties: ChatWindowMessageProperties | undefined;
35317
+ TextColor3: Color3;
35318
+ TextSize: number;
35319
+ TextStrokeColor3: Color3;
35320
+ TextStrokeTransparency: number;
35321
+ }
35322
+
35218
35323
  interface TextChatService extends Instance {
35219
35324
  /**
35220
35325
  * **DO NOT USE!**
@@ -1108,6 +1108,35 @@ declare namespace Enum {
1108
1108
  }
1109
1109
  export type AnimatorRetargetingMode = AnimatorRetargetingMode.Default | AnimatorRetargetingMode.Disabled | AnimatorRetargetingMode.Enabled;
1110
1110
 
1111
+ export namespace AnnotationEditingMode {
1112
+ export interface None extends globalThis.EnumItem {
1113
+ Name: "None";
1114
+ Value: 0;
1115
+ EnumType: typeof globalThis.Enum.AnnotationEditingMode;
1116
+ }
1117
+
1118
+ export const None: None;
1119
+
1120
+ export interface PlacingNew extends globalThis.EnumItem {
1121
+ Name: "PlacingNew";
1122
+ Value: 1;
1123
+ EnumType: typeof globalThis.Enum.AnnotationEditingMode;
1124
+ }
1125
+
1126
+ export const PlacingNew: PlacingNew;
1127
+
1128
+ export interface WritingNew extends globalThis.EnumItem {
1129
+ Name: "WritingNew";
1130
+ Value: 2;
1131
+ EnumType: typeof globalThis.Enum.AnnotationEditingMode;
1132
+ }
1133
+
1134
+ export const WritingNew: WritingNew;
1135
+
1136
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnnotationEditingMode>;
1137
+ }
1138
+ export type AnnotationEditingMode = AnnotationEditingMode.None | AnnotationEditingMode.PlacingNew | AnnotationEditingMode.WritingNew;
1139
+
1111
1140
  export namespace AppLifecycleManagerState {
1112
1141
  export interface Detached extends globalThis.EnumItem {
1113
1142
  Name: "Detached";
@@ -4156,6 +4185,35 @@ declare namespace Enum {
4156
4185
  }
4157
4186
  export type ChatPrivacyMode = ChatPrivacyMode.AllUsers | ChatPrivacyMode.NoOne | ChatPrivacyMode.Friends;
4158
4187
 
4188
+ export namespace ChatRestrictionStatus {
4189
+ export interface Unknown extends globalThis.EnumItem {
4190
+ Name: "Unknown";
4191
+ Value: 0;
4192
+ EnumType: typeof globalThis.Enum.ChatRestrictionStatus;
4193
+ }
4194
+
4195
+ export const Unknown: Unknown;
4196
+
4197
+ export interface NotRestricted extends globalThis.EnumItem {
4198
+ Name: "NotRestricted";
4199
+ Value: 1;
4200
+ EnumType: typeof globalThis.Enum.ChatRestrictionStatus;
4201
+ }
4202
+
4203
+ export const NotRestricted: NotRestricted;
4204
+
4205
+ export interface Restricted extends globalThis.EnumItem {
4206
+ Name: "Restricted";
4207
+ Value: 2;
4208
+ EnumType: typeof globalThis.Enum.ChatRestrictionStatus;
4209
+ }
4210
+
4211
+ export const Restricted: Restricted;
4212
+
4213
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ChatRestrictionStatus>;
4214
+ }
4215
+ export type ChatRestrictionStatus = ChatRestrictionStatus.Unknown | ChatRestrictionStatus.NotRestricted | ChatRestrictionStatus.Restricted;
4216
+
4159
4217
  export namespace ChatStyle {
4160
4218
  export interface Classic extends globalThis.EnumItem {
4161
4219
  Name: "Classic";
@@ -7249,6 +7307,163 @@ declare namespace Enum {
7249
7307
  }
7250
7308
  export type FillDirection = FillDirection.Horizontal | FillDirection.Vertical;
7251
7309
 
7310
+ export namespace FilterErrorType {
7311
+ export interface BackslashNotEscapingAnything extends globalThis.EnumItem {
7312
+ Name: "BackslashNotEscapingAnything";
7313
+ Value: 0;
7314
+ EnumType: typeof globalThis.Enum.FilterErrorType;
7315
+ }
7316
+
7317
+ export const BackslashNotEscapingAnything: BackslashNotEscapingAnything;
7318
+
7319
+ export interface BadBespokeFilter extends globalThis.EnumItem {
7320
+ Name: "BadBespokeFilter";
7321
+ Value: 1;
7322
+ EnumType: typeof globalThis.Enum.FilterErrorType;
7323
+ }
7324
+
7325
+ export const BadBespokeFilter: BadBespokeFilter;
7326
+
7327
+ export interface BadName extends globalThis.EnumItem {
7328
+ Name: "BadName";
7329
+ Value: 2;
7330
+ EnumType: typeof globalThis.Enum.FilterErrorType;
7331
+ }
7332
+
7333
+ export const BadName: BadName;
7334
+
7335
+ export interface IncompleteOr extends globalThis.EnumItem {
7336
+ Name: "IncompleteOr";
7337
+ Value: 3;
7338
+ EnumType: typeof globalThis.Enum.FilterErrorType;
7339
+ }
7340
+
7341
+ export const IncompleteOr: IncompleteOr;
7342
+
7343
+ export interface IncompleteParenthesis extends globalThis.EnumItem {
7344
+ Name: "IncompleteParenthesis";
7345
+ Value: 4;
7346
+ EnumType: typeof globalThis.Enum.FilterErrorType;
7347
+ }
7348
+
7349
+ export const IncompleteParenthesis: IncompleteParenthesis;
7350
+
7351
+ export interface InvalidDoubleStar extends globalThis.EnumItem {
7352
+ Name: "InvalidDoubleStar";
7353
+ Value: 5;
7354
+ EnumType: typeof globalThis.Enum.FilterErrorType;
7355
+ }
7356
+
7357
+ export const InvalidDoubleStar: InvalidDoubleStar;
7358
+
7359
+ export interface InvalidTilde extends globalThis.EnumItem {
7360
+ Name: "InvalidTilde";
7361
+ Value: 6;
7362
+ EnumType: typeof globalThis.Enum.FilterErrorType;
7363
+ }
7364
+
7365
+ export const InvalidTilde: InvalidTilde;
7366
+
7367
+ export interface PropertyBadOperator extends globalThis.EnumItem {
7368
+ Name: "PropertyBadOperator";
7369
+ Value: 7;
7370
+ EnumType: typeof globalThis.Enum.FilterErrorType;
7371
+ }
7372
+
7373
+ export const PropertyBadOperator: PropertyBadOperator;
7374
+
7375
+ export interface PropertyDoesNotExist extends globalThis.EnumItem {
7376
+ Name: "PropertyDoesNotExist";
7377
+ Value: 8;
7378
+ EnumType: typeof globalThis.Enum.FilterErrorType;
7379
+ }
7380
+
7381
+ export const PropertyDoesNotExist: PropertyDoesNotExist;
7382
+
7383
+ export interface PropertyInvalidField extends globalThis.EnumItem {
7384
+ Name: "PropertyInvalidField";
7385
+ Value: 9;
7386
+ EnumType: typeof globalThis.Enum.FilterErrorType;
7387
+ }
7388
+
7389
+ export const PropertyInvalidField: PropertyInvalidField;
7390
+
7391
+ export interface PropertyInvalidValue extends globalThis.EnumItem {
7392
+ Name: "PropertyInvalidValue";
7393
+ Value: 10;
7394
+ EnumType: typeof globalThis.Enum.FilterErrorType;
7395
+ }
7396
+
7397
+ export const PropertyInvalidValue: PropertyInvalidValue;
7398
+
7399
+ export interface PropertyUnsupportedFields extends globalThis.EnumItem {
7400
+ Name: "PropertyUnsupportedFields";
7401
+ Value: 11;
7402
+ EnumType: typeof globalThis.Enum.FilterErrorType;
7403
+ }
7404
+
7405
+ export const PropertyUnsupportedFields: PropertyUnsupportedFields;
7406
+
7407
+ export interface PropertyUnsupportedProperty extends globalThis.EnumItem {
7408
+ Name: "PropertyUnsupportedProperty";
7409
+ Value: 12;
7410
+ EnumType: typeof globalThis.Enum.FilterErrorType;
7411
+ }
7412
+
7413
+ export const PropertyUnsupportedProperty: PropertyUnsupportedProperty;
7414
+
7415
+ export interface UnexpectedNameIndex extends globalThis.EnumItem {
7416
+ Name: "UnexpectedNameIndex";
7417
+ Value: 13;
7418
+ EnumType: typeof globalThis.Enum.FilterErrorType;
7419
+ }
7420
+
7421
+ export const UnexpectedNameIndex: UnexpectedNameIndex;
7422
+
7423
+ export interface UnexpectedToken extends globalThis.EnumItem {
7424
+ Name: "UnexpectedToken";
7425
+ Value: 14;
7426
+ EnumType: typeof globalThis.Enum.FilterErrorType;
7427
+ }
7428
+
7429
+ export const UnexpectedToken: UnexpectedToken;
7430
+
7431
+ export interface UnfinishedBinaryOperator extends globalThis.EnumItem {
7432
+ Name: "UnfinishedBinaryOperator";
7433
+ Value: 15;
7434
+ EnumType: typeof globalThis.Enum.FilterErrorType;
7435
+ }
7436
+
7437
+ export const UnfinishedBinaryOperator: UnfinishedBinaryOperator;
7438
+
7439
+ export interface UnfinishedQuote extends globalThis.EnumItem {
7440
+ Name: "UnfinishedQuote";
7441
+ Value: 16;
7442
+ EnumType: typeof globalThis.Enum.FilterErrorType;
7443
+ }
7444
+
7445
+ export const UnfinishedQuote: UnfinishedQuote;
7446
+
7447
+ export interface UnknownBespokeFilter extends globalThis.EnumItem {
7448
+ Name: "UnknownBespokeFilter";
7449
+ Value: 17;
7450
+ EnumType: typeof globalThis.Enum.FilterErrorType;
7451
+ }
7452
+
7453
+ export const UnknownBespokeFilter: UnknownBespokeFilter;
7454
+
7455
+ export interface WildcardInProperty extends globalThis.EnumItem {
7456
+ Name: "WildcardInProperty";
7457
+ Value: 18;
7458
+ EnumType: typeof globalThis.Enum.FilterErrorType;
7459
+ }
7460
+
7461
+ export const WildcardInProperty: WildcardInProperty;
7462
+
7463
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FilterErrorType>;
7464
+ }
7465
+ export type FilterErrorType = FilterErrorType.BackslashNotEscapingAnything | FilterErrorType.BadBespokeFilter | FilterErrorType.BadName | FilterErrorType.IncompleteOr | FilterErrorType.IncompleteParenthesis | FilterErrorType.InvalidDoubleStar | FilterErrorType.InvalidTilde | FilterErrorType.PropertyBadOperator | FilterErrorType.PropertyDoesNotExist | FilterErrorType.PropertyInvalidField | FilterErrorType.PropertyInvalidValue | FilterErrorType.PropertyUnsupportedFields | FilterErrorType.PropertyUnsupportedProperty | FilterErrorType.UnexpectedNameIndex | FilterErrorType.UnexpectedToken | FilterErrorType.UnfinishedBinaryOperator | FilterErrorType.UnfinishedQuote | FilterErrorType.UnknownBespokeFilter | FilterErrorType.WildcardInProperty;
7466
+
7252
7467
  export namespace FilterResult {
7253
7468
  export interface Accepted extends globalThis.EnumItem {
7254
7469
  Name: "Accepted";
@@ -12159,6 +12374,163 @@ declare namespace Enum {
12159
12374
  }
12160
12375
  export type LeftRight = LeftRight.Left | LeftRight.Center | LeftRight.Right;
12161
12376
 
12377
+ export namespace LexemeType {
12378
+ export interface Eof extends globalThis.EnumItem {
12379
+ Name: "Eof";
12380
+ Value: 0;
12381
+ EnumType: typeof globalThis.Enum.LexemeType;
12382
+ }
12383
+
12384
+ export const Eof: Eof;
12385
+
12386
+ export interface Name extends globalThis.EnumItem {
12387
+ Name: "Name";
12388
+ Value: 1;
12389
+ EnumType: typeof globalThis.Enum.LexemeType;
12390
+ }
12391
+
12392
+ export const Name: Name;
12393
+
12394
+ export interface QuotedString extends globalThis.EnumItem {
12395
+ Name: "QuotedString";
12396
+ Value: 2;
12397
+ EnumType: typeof globalThis.Enum.LexemeType;
12398
+ }
12399
+
12400
+ export const QuotedString: QuotedString;
12401
+
12402
+ export interface Number extends globalThis.EnumItem {
12403
+ Name: "Number";
12404
+ Value: 3;
12405
+ EnumType: typeof globalThis.Enum.LexemeType;
12406
+ }
12407
+
12408
+ export const Number: Number;
12409
+
12410
+ export interface And extends globalThis.EnumItem {
12411
+ Name: "And";
12412
+ Value: 4;
12413
+ EnumType: typeof globalThis.Enum.LexemeType;
12414
+ }
12415
+
12416
+ export const And: And;
12417
+
12418
+ export interface Or extends globalThis.EnumItem {
12419
+ Name: "Or";
12420
+ Value: 5;
12421
+ EnumType: typeof globalThis.Enum.LexemeType;
12422
+ }
12423
+
12424
+ export const Or: Or;
12425
+
12426
+ export interface Equal extends globalThis.EnumItem {
12427
+ Name: "Equal";
12428
+ Value: 6;
12429
+ EnumType: typeof globalThis.Enum.LexemeType;
12430
+ }
12431
+
12432
+ export const Equal: Equal;
12433
+
12434
+ export interface TildeEqual extends globalThis.EnumItem {
12435
+ Name: "TildeEqual";
12436
+ Value: 7;
12437
+ EnumType: typeof globalThis.Enum.LexemeType;
12438
+ }
12439
+
12440
+ export const TildeEqual: TildeEqual;
12441
+
12442
+ export interface GreaterThan extends globalThis.EnumItem {
12443
+ Name: "GreaterThan";
12444
+ Value: 8;
12445
+ EnumType: typeof globalThis.Enum.LexemeType;
12446
+ }
12447
+
12448
+ export const GreaterThan: GreaterThan;
12449
+
12450
+ export interface GreaterThanEqual extends globalThis.EnumItem {
12451
+ Name: "GreaterThanEqual";
12452
+ Value: 9;
12453
+ EnumType: typeof globalThis.Enum.LexemeType;
12454
+ }
12455
+
12456
+ export const GreaterThanEqual: GreaterThanEqual;
12457
+
12458
+ export interface LessThan extends globalThis.EnumItem {
12459
+ Name: "LessThan";
12460
+ Value: 10;
12461
+ EnumType: typeof globalThis.Enum.LexemeType;
12462
+ }
12463
+
12464
+ export const LessThan: LessThan;
12465
+
12466
+ export interface LessThanEqual extends globalThis.EnumItem {
12467
+ Name: "LessThanEqual";
12468
+ Value: 11;
12469
+ EnumType: typeof globalThis.Enum.LexemeType;
12470
+ }
12471
+
12472
+ export const LessThanEqual: LessThanEqual;
12473
+
12474
+ export interface Colon extends globalThis.EnumItem {
12475
+ Name: "Colon";
12476
+ Value: 12;
12477
+ EnumType: typeof globalThis.Enum.LexemeType;
12478
+ }
12479
+
12480
+ export const Colon: Colon;
12481
+
12482
+ export interface Dot extends globalThis.EnumItem {
12483
+ Name: "Dot";
12484
+ Value: 13;
12485
+ EnumType: typeof globalThis.Enum.LexemeType;
12486
+ }
12487
+
12488
+ export const Dot: Dot;
12489
+
12490
+ export interface LeftParenthesis extends globalThis.EnumItem {
12491
+ Name: "LeftParenthesis";
12492
+ Value: 14;
12493
+ EnumType: typeof globalThis.Enum.LexemeType;
12494
+ }
12495
+
12496
+ export const LeftParenthesis: LeftParenthesis;
12497
+
12498
+ export interface RightParenthesis extends globalThis.EnumItem {
12499
+ Name: "RightParenthesis";
12500
+ Value: 15;
12501
+ EnumType: typeof globalThis.Enum.LexemeType;
12502
+ }
12503
+
12504
+ export const RightParenthesis: RightParenthesis;
12505
+
12506
+ export interface Star extends globalThis.EnumItem {
12507
+ Name: "Star";
12508
+ Value: 16;
12509
+ EnumType: typeof globalThis.Enum.LexemeType;
12510
+ }
12511
+
12512
+ export const Star: Star;
12513
+
12514
+ export interface DoubleStar extends globalThis.EnumItem {
12515
+ Name: "DoubleStar";
12516
+ Value: 17;
12517
+ EnumType: typeof globalThis.Enum.LexemeType;
12518
+ }
12519
+
12520
+ export const DoubleStar: DoubleStar;
12521
+
12522
+ export interface ReservedSpecial extends globalThis.EnumItem {
12523
+ Name: "ReservedSpecial";
12524
+ Value: 18;
12525
+ EnumType: typeof globalThis.Enum.LexemeType;
12526
+ }
12527
+
12528
+ export const ReservedSpecial: ReservedSpecial;
12529
+
12530
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.LexemeType>;
12531
+ }
12532
+ export type LexemeType = LexemeType.Eof | LexemeType.Name | LexemeType.QuotedString | LexemeType.Number | LexemeType.And | LexemeType.Or | LexemeType.Equal | LexemeType.TildeEqual | LexemeType.GreaterThan | LexemeType.GreaterThanEqual | LexemeType.LessThan | LexemeType.LessThanEqual | LexemeType.Colon | LexemeType.Dot | LexemeType.LeftParenthesis | LexemeType.RightParenthesis | LexemeType.Star | LexemeType.DoubleStar | LexemeType.ReservedSpecial;
12533
+
12162
12534
  export namespace Limb {
12163
12535
  export interface Head extends globalThis.EnumItem {
12164
12536
  Name: "Head";
@@ -1392,6 +1392,8 @@ interface CFrameConstructor {
1392
1392
  Angles: (rX: number, rY: number, rZ: number) => CFrame;
1393
1393
  /** Creates a rotated CFrame from a Unit Vector3 and a rotation in radians */
1394
1394
  fromAxisAngle: (unit: Vector3, rotation: number) => CFrame;
1395
+ /** Creates a rotated CFrame using angles (rx, ry, rz) in radians. Rotations are applied in the optional Enum.RotationOrder with a default of `XYZ`. */
1396
+ fromEulerAngles: (rX: number, rY: number, rZ: number, order?: Enum.RotationOrder) => CFrame;
1395
1397
  /** Creates a rotated CFrame using angles (rx, ry, rz) in radians. Rotations are applied in Z, Y, X order. */
1396
1398
  fromEulerAnglesXYZ: (rX: number, rY: number, rZ: number) => CFrame;
1397
1399
  /** Creates a rotated CFrame using angles (rx, ry, rz) in radians. Rotations are applied in Z, X, Y order. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.808",
3
+ "version": "1.0.809",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },