mvccore/ext-tool-ts-generator
最新稳定版本:v5.3.1
Composer 安装命令:
composer require mvccore/ext-tool-ts-generator
包简介
MvcCore - Extension - Tool - TypeScript Generator - utility to easilly generate TypeScript classes, interfaces or enums from PHP equivalents.
关键字:
README 文档
README
Installation
composer require mvccore/ext-tool-ts-generator
Features
Extension to easilly generate TypeScript model classes, interfaces or enums from PHP equivalents.
Usage
<?php include_once('vendor/autoload.php'); use \MvcCore\Ext\Tools\TsGenerator; TsGenerator::CreateInstance() ->SetType( new \ReflectionClass(\PhpObjects\BaseClass::class) ) ->SetPropsFlags( TsGenerator::PROPS_INHERIT_PROTECTED ) ->SetTargetPath( __DIR__ . '/Ts/Custom/ClassName.d.ts' ) ->SetWriteFlags( TsGenerator::WRITE_INTERFACE | TsGenerator::WRITE_DECLARE // | TsGenerator::WRITE_EXPORT ) ->SetExcludedPropsNames(['db']) //->SetCustomName('Custom.ClassName') ->Parse() ->Write();
统计信息
- 总下载量: 205
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 2
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2022-10-06