Socket
Socket
Sign inDemoInstall

@types/doctrine

Package Overview
Dependencies
0
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.3 to 0.0.4

doctrine/LICENSE

26

doctrine/index.d.ts

@@ -25,3 +25,3 @@ // Type definitions for doctrine the JSDoc parser

*/
unwrap?: boolean;
unwrap?: boolean | undefined;
/**

@@ -32,3 +32,3 @@ * An array of tags to return. When specified, Doctrine returns

*/
tags?: string[];
tags?: string[] | undefined;
/**

@@ -38,3 +38,3 @@ * set to `true` to keep parsing even when syntax errors occur. Default:

*/
recoverable?: boolean;
recoverable?: boolean | undefined;
/**

@@ -44,3 +44,3 @@ * Set to `true` to allow optional parameters to be specified in brackets

*/
sloppy?: boolean;
sloppy?: boolean | undefined;
/**

@@ -50,3 +50,3 @@ * Set to `true` to throw an error when syntax errors occur. If false then

*/
strict?: boolean;
strict?: boolean | undefined;
/**

@@ -56,3 +56,3 @@ * Set to `true` to preserve leading and trailing whitespace when extracting

*/
preserveWhitespace?: boolean;
preserveWhitespace?: boolean | undefined;
/**

@@ -62,3 +62,3 @@ * Set to `true` to add `lineNumber` to each node, specifying the line on

*/
lineNumbers?: boolean;
lineNumbers?: boolean | undefined;
}

@@ -95,10 +95,10 @@

/** The name of the thing this tag is documenting, if any. */
name?: string;
name?: string | undefined;
/** The description of the thing this tag is documenting. */
description: string|null;
/** The type of the thing this tag is documenting. */
type?: Type|null;
kind?: string;
type?: Type|null | undefined;
kind?: string | undefined;
/** Any errors that were encountered in parsing the tag. */
errors?: string[];
errors?: string[] | undefined;
}

@@ -117,3 +117,3 @@

export interface ArrayType { type: 'ArrayType', elements: Type[] }
export interface FieldType { type: 'FieldType', key: string, value?: Type }
export interface FieldType { type: 'FieldType', key: string, value?: Type | undefined }
export interface FunctionType {

@@ -141,3 +141,3 @@ type: 'FunctionType';

type: 'RestType';
expression?: Type;
expression?: Type | undefined;
}

@@ -144,0 +144,0 @@ export interface TypeApplication {

{
"name": "@types/doctrine",
"version": "0.0.3",
"version": "0.0.4",
"description": "TypeScript definitions for doctrine the JSDoc parser",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/doctrine",
"license": "MIT",
"author": "rictic <https://github.com/rictic>",
"contributors": [
{
"name": "rictic",
"url": "https://github.com/rictic",
"githubUsername": "rictic"
}
],
"main": "",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git"
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"directory": "types/doctrine"
},
"scripts": {},
"dependencies": {},
"typings": "index.d.ts",
"typesPublisherContentHash": "764cf495b12261324bf88c55f86632abb22d64a15ab0920627c536d776b78614"
"typesPublisherContentHash": "3c5c12e964db2c02c71cb3da5edf94e6a816674d404d1dd0b21f0cb07765f45a",
"typeScriptVersion": "3.6"
}

@@ -8,12 +8,10 @@ # Installation

# Details
Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/types-2.0/doctrine
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/doctrine.
Additional Details
* Last updated: Mon, 19 Sep 2016 16:15:24 GMT
* File structure: ProperModule
* Library Dependencies: none
* Module Dependencies: none
### Additional Details
* Last updated: Tue, 06 Jul 2021 20:32:46 GMT
* Dependencies: none
* Global values: none
# Credits
These definitions were written by rictic <https://github.com/rictic>.
These definitions were written by [rictic](https://github.com/rictic).
SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc