UNPKG
foalts2-cli
Version:
latest (2.12.0)
2.12.0
CLI tool for FoalTS
github.com/FoalTS
FoalTS/foal
foalts2-cli
/
lib
/
generate
/
templates
/
entity
/
entity.ts
11 lines
(7 loc)
•
257 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
// eslint-disable-
next
-line
@typescript
-eslint/
no
-unused-vars import { BaseEntity, Column, Entity, PrimaryGeneratedColumn } from
'typeorm'
;
@Entity
() export
class
/*
upperFirstCamelName
*/
extends
BaseEntity
{
@PrimaryGeneratedColumn
() id: number; }