
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.