Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
@domclick/declarations-js-library
Advanced tools
Generate TypeScript declarations for your components from PropTypes
declarations-js-library
is a library that can scan propsType in you file and create
the list of declarations TS. It's useful for packages written on js.
npm i --save--dev @domclick/declarations-js-library
Properties | Required | Type | Default | Description |
---|---|---|---|---|
libName | Yes | string | '' | Library name |
path | No | string | 'src/index.js' | Path to js file or files 'src/**/*.js' |
destinationPath | No | string | 'dist/index.d.ts' | Destination path for index.d.ts file |
declarationList | No | Array | [] | Components Name to be included in index.d.ts |
// file build.js
const { propsTypeToTS } = require('@clic-core/declarations-js-library');
propsTypeToTS({
libName: 'libName',
});
Run the command node build.js
to create the index.d.ts file.
const envOptions = ['test', 'testing'];
export const MyComponent = (props) => (<div>MyComponent</div>);
MyComponent.propTypes = {
env: PropTypes.oneOf(envOptions).isRequired,
isOpen: PropTypes.bool,
onClick: PropTypes.func,
string: PropTypes.string,
number: PropTypes.number,
array: PropTypes.array.isRequired,
obj: PropTypes.shape({ name3: PropTypes.instanceOf(Array) }).isRequired,
};
/* libName: test */
import React from "react";
type MyComponentEnvEnum = "test" | "testing";
interface MyComponentProps {
env: MyComponentEnvEnum;
isOpen?: boolean;
onClick?: Function;
string?: string;
number?: number;
array: Array<unknown>;
obj: unknown;
}
export const MyComponent: React.ComponentClass<MyComponentProps>;
This project was inspired by that project
Copyright Ⓒ 2021 "Sberbank Real Estate Center" Limited Liability Company.
FAQs
Generate TypeScript declarations for your components from PropTypes
We found that @domclick/declarations-js-library demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.