Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@domclick/declarations-js-library

Package Overview
Dependencies
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@domclick/declarations-js-library

Generate TypeScript declarations for your components from PropTypes

  • 2.0.3
  • latest
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

declarations-js-library библиотека

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.

Installation

npm i --save--dev @domclick/declarations-js-library

Properties

PropertiesRequiredTypeDefaultDescription
libNameYesstring''Library name
pathNostring'src/index.js'Path to js file or files 'src/**/*.js'
destinationPathNostring'dist/index.d.ts'Destination path for index.d.ts file
declarationListNoArray[]Components Name to be included in index.d.ts

Usage

// 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.

Example

Input

 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,
 };

Output

/* 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>;

Author

  • Kirill Zelenetsky

This project was inspired by that project

License

Copyright Ⓒ 2021 "Sberbank Real Estate Center" Limited Liability Company.

MIT License

Keywords

FAQs

Package last updated on 09 Sep 2021

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc