Represents the runtime description of a translation file.
interface Resource {
name: string;
alias: string;
path: string;
format: string;
type: 'json' | 'text' | 'blob' | 'arraybuffer';
inUse: boolean;
}
The name of the translation file without the file extension.
An optional value used to refer to the translation items in the application instead of the name.
The path of the translation file.
The format of the translation file.
The type of the loader used to download the translation file.
Indicates whether the translation file has already been downloaded.