8 lines
202 B
TypeScript
8 lines
202 B
TypeScript
import { BaseXmlComponent, IXmlableObject } from "file/xml-components";
|
|
|
|
export class Formatter {
|
|
public format(input: BaseXmlComponent): IXmlableObject {
|
|
return input.prepForXml();
|
|
}
|
|
}
|