Socket
Socket
Sign inDemoInstall

@types/generate-changelog

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/generate-changelog - npm Package Compare versions

Comparing version 1.8.0 to 1.8.1

14

generate-changelog/index.d.ts

@@ -8,17 +8,17 @@ // Type definitions for generate-changelog 1.8

/** allow unkown commit types */
allowUnknown?: boolean;
allowUnknown?: boolean | undefined;
/** exclude listed commit types (e.g. `['chore', 'style', 'refactor']`) */
exclude?: string[];
exclude?: string[] | undefined;
/** whether it should be a patch changelog */
patch?: boolean;
patch?: boolean | undefined;
/** whether it should be a minor changelog */
minor?: boolean;
minor?: boolean | undefined;
/** whether it should be a major changelog */
major?: boolean;
major?: boolean | undefined;
/** repo URL that will be used when linking commits */
repoUrl?: string;
repoUrl?: string | undefined;
/** generate from specific tag or range (e.g. `v1.2.3` or `v1.2.3..v1.2.4`)' */
tag?: string;
tag?: string | undefined;
}
export function generate(options: Options): Promise<string>;
{
"name": "@types/generate-changelog",
"version": "1.8.0",
"version": "1.8.1",
"description": "TypeScript definitions for generate-changelog",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/generate-changelog",
"license": "MIT",

@@ -14,3 +15,3 @@ "contributors": [

"main": "",
"types": "index",
"types": "index.d.ts",
"repository": {

@@ -23,4 +24,4 @@ "type": "git",

"dependencies": {},
"typesPublisherContentHash": "5eb21753a897ce6c577ed763e3cc6ff0db38dad2a82cec0bc62b6efc35344364",
"typeScriptVersion": "2.0"
"typesPublisherContentHash": "92c89a778fe404df7d58c7bbf27cf97787bcd2d7b99ba4f838a4a50e1f9e69c0",
"typeScriptVersion": "3.6"
}

@@ -8,6 +8,33 @@ # Installation

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/generate-changelog
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/generate-changelog.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/generate-changelog/index.d.ts)
````ts
// Type definitions for generate-changelog 1.8
// Project: https://github.com/lob/generate-changelog#readme
// Definitions by: Florian Keller <https://github.com/ffflorian>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
Additional Details
* Last updated: Thu, 27 Jun 2019 16:18:34 GMT
export interface Options {
/** allow unkown commit types */
allowUnknown?: boolean | undefined;
/** exclude listed commit types (e.g. `['chore', 'style', 'refactor']`) */
exclude?: string[] | undefined;
/** whether it should be a patch changelog */
patch?: boolean | undefined;
/** whether it should be a minor changelog */
minor?: boolean | undefined;
/** whether it should be a major changelog */
major?: boolean | undefined;
/** repo URL that will be used when linking commits */
repoUrl?: string | undefined;
/** generate from specific tag or range (e.g. `v1.2.3` or `v1.2.3..v1.2.4`)' */
tag?: string | undefined;
}
export function generate(options: Options): Promise<string>;
````
### Additional Details
* Last updated: Thu, 08 Jul 2021 12:02:02 GMT
* Dependencies: none

@@ -17,2 +44,2 @@ * Global values: none

# Credits
These definitions were written by Florian Keller <https://github.com/ffflorian>.
These definitions were written by [Florian Keller](https://github.com/ffflorian).

Sorry, the diff of this file is not supported yet

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