Skip to content

Commit ff9496e

Browse files
committed
run yarn fix
1 parent 28c2d9e commit ff9496e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/generators/TypescriptInterfaceGenerator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default class TypescriptInterfaceGenerator extends BaseGenerator {
1616

1717
generate(api, resource, dir) {
1818
const dest = `${dir}/interfaces`;
19-
const {fields, imports} = this.parseFields(resource);
19+
const { fields, imports } = this.parseFields(resource);
2020

2121
this.createDir(dest, false);
2222
this.createFile(

src/generators/TypescriptInterfaceGenerator.test.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ export interface Foo {
6767
tmpobj.removeCallback();
6868
});
6969

70-
7170
test("Generate a typescript interface without references to other interfaces", () => {
7271
const generator = new TypescriptInterfaceGenerator({
7372
templateDirectory: `${__dirname}/../../templates`

0 commit comments

Comments
 (0)