remove changelog

This commit is contained in:
Christopher Woodland
2018-03-05 15:31:23 -05:00
parent 2a9e5b6e9f
commit d9df4c106d
2 changed files with 12 additions and 10 deletions

View File

@@ -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.

View File

@@ -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;