Run updated prettier

This commit is contained in:
Max Lay
2020-08-04 08:50:56 +12:00
parent 870c222dd5
commit ec4c4fb5c4
2 changed files with 15 additions and 14 deletions

View File

@ -9,11 +9,13 @@ export interface ICustomPropertyOptions {
export class CustomProperty extends XmlComponent {
constructor(id: number, properties: ICustomPropertyOptions) {
super("property");
this.root.push(new CustomPropertyAttributes({
fmtid: "{D5CDD505-2E9C-101B-9397-08002B2CF9AE}",
pid: id.toString(),
name: properties.name,
}));
this.root.push(
new CustomPropertyAttributes({
fmtid: "{D5CDD505-2E9C-101B-9397-08002B2CF9AE}",
pid: id.toString(),
name: properties.name,
}),
);
this.root.push(new CustomPropertyValue(properties.value));
}
}