mdx-m3-viewer
Version:
A browser WebGL model viewer. Mainly focused on models of the games Warcraft 3 and Starcraft 2.
15 lines (14 loc) • 334 B
TypeScript
/**
* An INI section.
*/
export declare type IniSection = Map<string, string>;
/**
* An INI file.
*/
export declare class IniFile {
properties: Map<string, string>;
sections: Map<string, IniSection>;
load(buffer: string): void;
save(): string;
getSection(name: string): IniSection | undefined;
}