
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
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
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.