@remote.it/core
Version:
Core remote.it JavasScript/TypeScript library
17 lines (16 loc) • 367 B
TypeScript
import { File } from './File'
export declare class XMLFile<T> extends File {
location: string
private baseOptions
constructor(location: string)
/**
* Return the JavaScript object representation of the
* XML file.
*/
read(): T
/**
* Write the contents as XML to the file.
*/
write(content: T): void
}
//# sourceMappingURL=XMLFile.d.ts.map