模式:从SQL数据库模式生成打字稿接口定义 源码
原理图 使用Schemats,您可以从(Postgres,MySQL)SQL数据库模式中自动生成TypeScript接口定义。 从数据库模式开始: 用户数 ID 系列 用户名 VARCHAR 密码 VARCHAR last_logon 时间戳 自动生成以下TypesScript接口 interface Users { id : number ; username : string ; password : string ; last_logon : Date ; } 有关该项目背后的动机和理性的概述,请查看。 快速开始 安装示意图 npm ins
文件列表
schemats-master.zip
(预估有个50文件)
schemats-master
circle.yml
373B
demo2.gif
489KB
src
typescript.ts
2KB
options.ts
692B
schemaInterfaces.ts
652B
index.ts
4KB
schemaPostgres.ts
6KB
schemaMysql.ts
7KB
暂无评论