Skip to content

Commit

Permalink
chore: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Maed223 authored and DanielMSchmidt committed Oct 16, 2023
1 parent c0f9dda commit 497c2c6
Showing 1 changed file with 10 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ import { AttributeTypeModel } from "./attribute-type-model";
export type GetterType =
| { _type: "plain" }
| {
_type: "args";
args: string;
returnType?: string;
returnStatement: string;
}
_type: "args";
args: string;
returnType?: string;
returnStatement: string;
}
| {
_type: "stored_class";
};
_type: "stored_class";
};

export type SetterType =
| { _type: "none" }
Expand Down Expand Up @@ -144,8 +144,9 @@ export class AttributeModel {

return {
_type: "set",
type: `${this.type.inputTypeDefinition}${this.isProvider ? " | undefined" : ""
}`,
type: `${this.type.inputTypeDefinition}${
this.isProvider ? " | undefined" : ""
}`,
};
}

Expand Down

0 comments on commit 497c2c6

Please sign in to comment.