From d9df4c106d9ffc295e6727381eb8602a00dc5eeb Mon Sep 17 00:00:00 2001 From: Christopher Woodland Date: Mon, 5 Mar 2018 15:31:23 -0500 Subject: [PATCH] remove changelog --- types/frisby/CHANGELOG.md | 10 ---------- types/frisby/index.d.ts | 12 ++++++++++++ 2 files changed, 12 insertions(+), 10 deletions(-) delete mode 100644 types/frisby/CHANGELOG.md diff --git a/types/frisby/CHANGELOG.md b/types/frisby/CHANGELOG.md deleted file mode 100644 index 4b07f01aca..0000000000 --- a/types/frisby/CHANGELOG.md +++ /dev/null @@ -1,10 +0,0 @@ -# Change Log -All notable changes to this project will be documented in this file. - -The format is based on [Keep a Changelog](http://keepachangelog.com/) -and this project adheres to [Semantic Versioning](http://semver.org/). - -## 2018-03-05 -### Changed -- Update _Frisbyspec.get_, _Frisbyspec.post_, _Frisbyspec.put_, _Frisbyspec.del_, _Frisbyspec.patch_, _Frisbyspec.fetch_ to allow _params_ to be optional. -- Update _FrisbySpec.then_ to allow _onRejected_ to be optional. diff --git a/types/frisby/index.d.ts b/types/frisby/index.d.ts index e931b8b4cd..0586f99ed2 100644 --- a/types/frisby/index.d.ts +++ b/types/frisby/index.d.ts @@ -18,6 +18,18 @@ export import Joi = require("joi"); // #region Frisby FrisbySpec Methods // Reference file: https://github.com/vlucas/frisby/blob/master/src/frisby/spec.js + + +// **************************************CHANGE LOG************************************** +// C.E.W. This is an attempt to create some sort of changelog for these types. +// If you make any changes, please try and note those changes in this section. +// If this section gets too long we can always trim it. +// ## 2018-03-05 +// ### Changed +// - Update _Frisbyspec.get_, _Frisbyspec.post_, _Frisbyspec.put_, _Frisbyspec.del_, _Frisbyspec.patch_, _Frisbyspec.fetch_ to allow _params_ to be optional. +// - Update _FrisbySpec.then_ to allow _onRejected_ to be optional. +// **************************************CHANGE LOG************************************** + export class FrisbySpec { constructor(...args: any[]); catch(onRejected?: (error: Error) => void): FrisbySpec;