New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@wessberg/type

Package Overview
Dependencies
Maintainers
1
Versions
76
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wessberg/type - npm Package Compare versions

Comparing version 0.0.61 to 0.0.62

9

CHANGELOG.md

@@ -0,1 +1,10 @@

<a name="0.0.62"></a>
## 0.0.62 (2017-08-27)
* . ([66a3c74](https://github.com/wessberg/Type/commit/66a3c74))
* 0.0.62 ([5823b73](https://github.com/wessberg/Type/commit/5823b73))
* Bumped version ([0e2a234](https://github.com/wessberg/Type/commit/0e2a234))
<a name="0.0.61"></a>

@@ -2,0 +11,0 @@ ## 0.0.61 (2017-08-27)

18

dist/es2015/expression/parameter/i-formatted-parameter.d.ts

@@ -1,26 +0,18 @@

import { ArrayBindingName, IObjectBindingName } from "../../binding-name/i-binding-name";
import { BindingNameKind } from "../../binding-name/binding-name-kind";
import { FormattedExpression, IFormattedExpression } from "../formatted-expression/i-formatted-expression";
import { Type } from "../../type/type/type";
import { FormattedExpressionKind } from "../formatted-expression-kind/formatted-expression-kind";
export interface IFormattedParameter extends IFormattedExpression {
import { IArrayBindingParameterType, INormalParameterType, IObjectBindingParameterType, IParameterType } from "../../type/parameter-type/i-parameter-type";
export interface IFormattedParameter extends IFormattedExpression, IParameterType {
expressionKind: FormattedExpressionKind.PARAMETER;
kind: BindingNameKind;
isRestSpread: boolean;
optional: boolean;
initializer: FormattedExpression | null;
type: Type;
}
export interface IFormattedNormalParameter extends IFormattedParameter {
export interface IFormattedNormalParameter extends IFormattedParameter, INormalParameterType {
kind: BindingNameKind.NORMAL;
name: string;
}
export interface IFormattedObjectBindingParameter extends IFormattedParameter {
export interface IFormattedObjectBindingParameter extends IFormattedParameter, IObjectBindingParameterType {
kind: BindingNameKind.OBJECT_BINDING;
bindings: IObjectBindingName[];
}
export interface IFormattedArrayBindingParameter extends IFormattedParameter {
export interface IFormattedArrayBindingParameter extends IFormattedParameter, IArrayBindingParameterType {
kind: BindingNameKind.ARRAY_BINDING;
bindings: ArrayBindingName[];
}
export declare type FormattedParameter = IFormattedNormalParameter | IFormattedObjectBindingParameter | IFormattedArrayBindingParameter;

@@ -1,26 +0,18 @@

import { ArrayBindingName, IObjectBindingName } from "../../binding-name/i-binding-name";
import { BindingNameKind } from "../../binding-name/binding-name-kind";
import { FormattedExpression, IFormattedExpression } from "../formatted-expression/i-formatted-expression";
import { Type } from "../../type/type/type";
import { FormattedExpressionKind } from "../formatted-expression-kind/formatted-expression-kind";
export interface IFormattedParameter extends IFormattedExpression {
import { IArrayBindingParameterType, INormalParameterType, IObjectBindingParameterType, IParameterType } from "../../type/parameter-type/i-parameter-type";
export interface IFormattedParameter extends IFormattedExpression, IParameterType {
expressionKind: FormattedExpressionKind.PARAMETER;
kind: BindingNameKind;
isRestSpread: boolean;
optional: boolean;
initializer: FormattedExpression | null;
type: Type;
}
export interface IFormattedNormalParameter extends IFormattedParameter {
export interface IFormattedNormalParameter extends IFormattedParameter, INormalParameterType {
kind: BindingNameKind.NORMAL;
name: string;
}
export interface IFormattedObjectBindingParameter extends IFormattedParameter {
export interface IFormattedObjectBindingParameter extends IFormattedParameter, IObjectBindingParameterType {
kind: BindingNameKind.OBJECT_BINDING;
bindings: IObjectBindingName[];
}
export interface IFormattedArrayBindingParameter extends IFormattedParameter {
export interface IFormattedArrayBindingParameter extends IFormattedParameter, IArrayBindingParameterType {
kind: BindingNameKind.ARRAY_BINDING;
bindings: ArrayBindingName[];
}
export declare type FormattedParameter = IFormattedNormalParameter | IFormattedObjectBindingParameter | IFormattedArrayBindingParameter;
{
"name": "@wessberg/type",
"version": "0.0.61",
"version": "0.0.62",
"description": "Type signatures and enums for model types.",

@@ -5,0 +5,0 @@ "scripts": {

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