chore: lint

This commit is contained in:
karishmas6
2024-10-09 03:27:28 +05:30
parent 9d268c3e7f
commit 49f6193b37

View File

@@ -11,7 +11,7 @@ interface RobotAttributes {
workflow: object; // Store workflow details as JSONB workflow: object; // Store workflow details as JSONB
} }
interface RobotCreationAttributes extends Optional<RobotAttributes, 'id'> {} interface RobotCreationAttributes extends Optional<RobotAttributes, 'id'> { }
class Robot extends Model<RobotAttributes, RobotCreationAttributes> implements RobotAttributes { class Robot extends Model<RobotAttributes, RobotCreationAttributes> implements RobotAttributes {
public id!: string; public id!: string;