Skip to content

Commit

Permalink
Alphabetical definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
Neohertz committed Feb 23, 2024
1 parent eebddf3 commit a74d576
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions include/customDefinitions.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,14 @@ interface Attachment extends Instance {
WorldCFrame: CFrame;
}

interface AudioAnalyzer extends Instance {
/**
* Returns the frequency spectrum of the last audio buffer, as an array of numbers. The elements of the array are root-mean-square volume levels, evenly spaced from 0 hertz to 24,000 hertz.
* @returns number[512]
*/
GetSpectrum(this: AudioAnalyzer): Array<number>;
}

interface AvatarEditorService extends Instance {
GetAvatarRules(this: AvatarEditorService): AvatarRules;
GetBatchItemDetails(
Expand Down Expand Up @@ -868,14 +876,6 @@ interface SocialService extends Instance {
readonly GameInvitePromptClosed: RBXScriptSignal<(senderPlayer: Player, recipientIds: Array<number>) => void>;
}

interface AudioAnalyzer extends Instance {
/**
* Returns the frequency spectrum of the last audio buffer, as an array of numbers. The elements of the array are root-mean-square volume levels, evenly spaced from 0 hertz to 24,000 hertz.
* @returns number[512]
*/
GetSpectrum(this: AudioAnalyzer): Array<number>;
}

interface SoundService extends Instance {
GetListener(
this: SoundService,
Expand Down

0 comments on commit a74d576

Please sign in to comment.