
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
typescript-to-json
Advanced tools
Analysis of the d.ts file, collect the first level of property description It can be applied to DTS conversion to document API description
Analysis of the d.ts file, collect the first level of property description It can be applied to DTS conversion to document API description
npm i typescript-to-json --dev
const parse = require("typescript-to-json");
console.info(
parse(`import { ComponentClass } from 'react'
import { PickerProps, IPickerInstance } from './picker'
type IAnyObjectString = {
[x: number | string]: string
}
/**
* @desc API
*/
export interface AreaProps
extends Omit<PickerProps, 'columns' | 'onChange'>,
ComponentClass {
/**
* @default
* @desc value of address
*/
value?: string
areaList?: {
province_list: IAnyObjectString
city_list: IAnyObjectString
county_list: IAnyObjectString
}
/**
* @desc count of columns
*/
columnsNum?: string | number
/**
* @desc placeholder of columns
*/
columnsPlaceholder?: string[]
/**
* @desc trigger function
*/
onChange: (event: {
detail: {
values: number[] | string[]
picker: IPickerInstance
index: number
}
}) => void
}
declare const Area: ComponentClass<AreaProps>
export { Area }
`)
);
get the result, Only analyze the type description of Export Exposure; 'value' and 'require' come from code analysis, others come from comments
{
AreaProps: {
value: {
default: '',
desc: 'value of address',
require: 'false',
value: ' string\n\n'
},
areaList: {
require: 'false',
value: ' {\n' +
' province_list: IAnyObjectString\n' +
' city_list: IAnyObjectString\n' +
' county_list: IAnyObjectString\n' +
' }\n' +
'\n'
},
columnsNum: {
desc: 'count of columns',
require: 'false',
value: ' string | number\n\n'
},
columnsPlaceholder: {
desc: 'placeholder of columns',
require: 'false',
value: ' string[]\n\n'
},
onChange: {
desc: 'trigger function',
require: 'true',
value: ' (event: {\n' +
' detail: {\n' +
' values: number[] | string[]\n' +
' picker: IPickerInstance\n' +
' index: number\n' +
' }\n' +
' }) => void\n' +
'\n'
}
}
}
FAQs
Analysis of the d.ts file, collect the first level of property description It can be applied to DTS conversion to document API description
The npm package typescript-to-json receives a total of 0 weekly downloads. As such, typescript-to-json popularity was classified as not popular.
We found that typescript-to-json demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.