@bitzonegaming/roleplay-engine-sdk
Version:
Roleplay Engine SDK
35 lines (34 loc) • 608 B
TypeScript
import { SoundType } from './sound';
/**
*
* @export
* @interface UpdateSoundRequest
*/
export interface UpdateSoundRequest {
/**
*
* @type {SoundType}
* @memberof UpdateSoundRequest
*/
type: SoundType;
/**
*
* @type {string}
* @memberof UpdateSoundRequest
*/
description?: string;
/**
*
* @type {{ [key: string]: string; }}
* @memberof UpdateSoundRequest
*/
attributes: {
[key: string]: string;
};
/**
*
* @type {string}
* @memberof UpdateSoundRequest
*/
externalUrl?: string;
}