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

typescript-test-1

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

typescript-test-1 - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

es/components/input/input.d.ts

8

es/components/select/lib/select.d.ts
import * as React from 'react';
interface OptionProps {
disabled?: boolean;
value?: any;
title?: string;
children?: React.ReactNode;
}
import { OptionProps } from './option';
interface SelectProps {

@@ -27,2 +22,3 @@ prefixCls?: string;

declare class Select extends React.Component<SelectProps, any> {
static Option: (props: OptionProps) => JSX.Element;
componentDidMount(): void;

@@ -29,0 +25,0 @@ render(): JSX.Element;

@@ -15,2 +15,3 @@ var __extends = (this && this.__extends) || (function () {

import * as React from 'react';
import Option from './option';
var Select = (function (_super) {

@@ -29,2 +30,3 @@ __extends(Select, _super);

}(React.Component));
Select.Option = Option;
export default Select;

@@ -1,2 +0,2 @@

export { default as Input } from './components/input';
export { default as Select } from './components/select';
export { default as Input } from './components/input/input';
export { default as Select } from './components/select/select';
{
"name": "typescript-test-1",
"version": "1.0.0",
"version": "1.0.1",
"description": "",

@@ -5,0 +5,0 @@ "main": "index.js",

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