UNPKG

@bitzonegaming/roleplay-engine-sdk

Version:
26 lines (25 loc) 413 B
/** * * @export * @interface AddLocaleRequest */ export interface AddLocaleRequest { /** * * @type {string} * @memberof AddLocaleRequest */ code: string | null; /** * * @type {string} * @memberof AddLocaleRequest */ defaultName: string | null; /** * * @type {string} * @memberof AddLocaleRequest */ iconUrl: string | null; }