Apply prettier

This commit is contained in:
Ilango 2024-01-16 14:25:36 +05:30
parent 74602484b2
commit 9b114212c0
1 changed files with 3 additions and 4 deletions

View File

@ -1,6 +1,6 @@
/* eslint-disable */
import { Entity, Column, CreateDateColumn, UpdateDateColumn, PrimaryGeneratedColumn } from 'typeorm'
import { IVariable } from "../../Interface";
import { IVariable } from '../../Interface'
@Entity()
export class Variable implements IVariable {
@ -16,7 +16,6 @@ export class Variable implements IVariable{
@Column({ default: 'string', type: 'text' })
type: string
@CreateDateColumn()
createdDate: Date