declare namespace org { namespace bukkit { namespace configuration { namespace file { // @ts-ignore abstract class FileConfiguration extends org.bukkit.configuration.MemoryConfiguration { /** * Creates an empty {@link FileConfiguration} with no default values. */ constructor() /** * Creates an empty {@link FileConfiguration} using the specified {@link * Configuration} as a source for all default values. */ constructor(defaults: org.bukkit.configuration.Configuration) /** * Saves this {@link FileConfiguration} to the specified location. *

* If the file does not exist, it will be created. If already exists, it * will be overwritten. If it cannot be overwritten or created, an * exception will be thrown. *

* This method will save using the system default encoding, or possibly * using UTF8. */ public save(file: any): void; /** * Saves this {@link FileConfiguration} to the specified location. *

* If the file does not exist, it will be created. If already exists, it * will be overwritten. If it cannot be overwritten or created, an * exception will be thrown. *

* This method will save using the system default encoding, or possibly * using UTF8. */ public save(file: string): void; /** * Saves this {@link FileConfiguration} to a string, and returns it. */ public abstract saveToString(): string; /** * Loads this {@link FileConfiguration} from the specified location. *

* All the values contained within this configuration will be removed, * leaving only settings and defaults, and the new values will be loaded * from the given file. *

* If the file cannot be loaded for any reason, an exception will be * thrown. */ public load(file: any): void; /** * Loads this {@link FileConfiguration} from the specified reader. *

* All the values contained within this configuration will be removed, * leaving only settings and defaults, and the new values will be loaded * from the given stream. */ public load(reader: any): void; /** * Loads this {@link FileConfiguration} from the specified location. *

* All the values contained within this configuration will be removed, * leaving only settings and defaults, and the new values will be loaded * from the given file. *

* If the file cannot be loaded for any reason, an exception will be * thrown. */ public load(file: string): void; /** * Loads this {@link FileConfiguration} from the specified string, as * opposed to from file. *

* All the values contained within this configuration will be removed, * leaving only settings and defaults, and the new values will be loaded * from the given string. *

* If the string is invalid in any way, an exception will be thrown. */ public abstract loadFromString(contents: string): void; /** * Compiles the header for this {@link FileConfiguration} and returns the * result. *

* This will use the header from {@link #options()} -> {@link * FileConfigurationOptions#header()}, respecting the rules of {@link * FileConfigurationOptions#copyHeader()} if set. */ protected abstract buildHeader(): string; public options(): org.bukkit.configuration.file.FileConfigurationOptions; } } } } }