Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
rimuy authored Nov 30, 2023
1 parent 83d731f commit a736275
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions include/roblox.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2675,6 +2675,17 @@ declare namespace task {
function cancel(thread: thread): void;
}

interface buffer {
/**
* **DO NOT USE!**
*
* This field exists to force TypeScript to recognize this as a nominal type
* @hidden
* @deprecated
*/
readonly _nominal_buffer: unique symbol;
}

declare namespace buffer {
/** Creates a buffer. */
function create(size: number): buffer;
Expand Down Expand Up @@ -2749,8 +2760,6 @@ declare namespace buffer {
function fill(b: buffer, offset: number, value: number, count?: number): void;
}

type buffer = typeof buffer;

interface GettableCores {
AvatarContextMenuEnabled: boolean;
PointsNotificationsActive: boolean;
Expand Down

0 comments on commit a736275

Please sign in to comment.