@fboes/aerofly-custom-missions
Version:
Builder for Aerofly FS4 Custom Missions Files
55 lines (54 loc) • 1.19 kB
TypeScript
/**
* @class
* A translation for the mission title and description.
*/
export declare class AeroflyLocalizedText {
/**
* @property {string} language ISO 639-1 like
* - br
* - cn
* - de
* - es
* - fr
* - id
* - it
* - jp
* - kr
* - pl
* - sv
* - tr
*/
language: string;
/**
* @property {string} title of this flight plan
*/
title: string;
/**
* @property {string} description text, mission briefing, etc
*/
description: string;
/**
* @param {string} language ISO 639-1 like
* - br
* - cn
* - de
* - es
* - fr
* - id
* - it
* - jp
* - kr
* - pl
* - sv
* - tr
* @param {string} title of this flight plan
* @param {string} description text, mission briefing, etc
*/
constructor(language: string, title: string, description: string);
/**
* @param {number} index if used in an array will se the array index
* @returns {string} to use in Aerofly FS4's `custom_missions_user.tmc`
*/
toString(index?: number): string;
}
//# sourceMappingURL=AeroflyLocalizedText.d.ts.map