Skip to content

Commit

Permalink
add license to archive and add license header to typings
Browse files Browse the repository at this point in the history
  • Loading branch information
HackbrettXXX committed Aug 11, 2020
1 parent 71a7ddd commit d160d82
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 10 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"dist",
"types/index.d.ts",
"README.md",
"makeFonts.js"
"MIT-LICENSE.txt"
],
"typings": "types/index.d.ts",
"types": "types/index.d.ts",
Expand Down
6 changes: 3 additions & 3 deletions src/license.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
* Version ${data.versionID} Built on ${data.builtOn}
* CommitID ${data.commitID}
*
* Copyright (c) 2010-2018 James Hall <[email protected]>, https://github.com/MrRio/jsPDF
* 2015-2018 yWorks GmbH, http://www.yworks.com
* 2015-2018 Lukas Holländer <[email protected]>, https://github.com/HackbrettXXX
* Copyright (c) 2010-2020 James Hall <[email protected]>, https://github.com/MrRio/jsPDF
* 2015-2020 yWorks GmbH, http://www.yworks.com
* 2015-2020 Lukas Holländer <[email protected]>, https://github.com/HackbrettXXX
* 2016-2018 Aras Abbasi <[email protected]>
* 2010 Aaron Spike, https://github.com/acspike
* 2012 Willow Systems Corporation, willow-systems.com
Expand Down
56 changes: 50 additions & 6 deletions types/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,53 @@
// Type definitions for jsPDF 1.5.4
// Project: https://github.com/MrRio/jsPDF
// Definitions by: Amber Schühmacher <https://github.com/amberjs>
// Kevin Gonnord <https://github.com/lleios>
// Jackie Weng <https://github.com/jemerald>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/** @license
*
* jsPDF - PDF Document creation from JavaScript
*
* Copyright (c) 2010-2020 James Hall <[email protected]>, https://github.com/MrRio/jsPDF
* 2015-2020 yWorks GmbH, http://www.yworks.com
* 2015-2020 Lukas Holländer <[email protected]>, https://github.com/HackbrettXXX
* 2016-2018 Aras Abbasi <[email protected]>
* 2018 Amber Schühmacher <https://github.com/amberjs>
* 2018 Kevin Gonnord <https://github.com/lleios>
* 2018 Jackie Weng <https://github.com/jemerald>
* 2010 Aaron Spike, https://github.com/acspike
* 2012 Willow Systems Corporation, willow-systems.com
* 2012 Pablo Hess, https://github.com/pablohess
* 2012 Florian Jenett, https://github.com/fjenett
* 2013 Warren Weckesser, https://github.com/warrenweckesser
* 2013 Youssef Beddad, https://github.com/lifof
* 2013 Lee Driscoll, https://github.com/lsdriscoll
* 2013 Stefan Slonevskiy, https://github.com/stefslon
* 2013 Jeremy Morel, https://github.com/jmorel
* 2013 Christoph Hartmann, https://github.com/chris-rock
* 2014 Juan Pablo Gaviria, https://github.com/juanpgaviria
* 2014 James Makes, https://github.com/dollaruw
* 2014 Diego Casorran, https://github.com/diegocr
* 2014 Steven Spungin, https://github.com/Flamenco
* 2014 Kenneth Glassey, https://github.com/Gavvers
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* Contributor(s):
* siefkenj, ahwolf, rickygu, Midnith, saintclair, eaparango,
* kim3er, mfo, alnorth, Flamenco
*/

declare module "jspdf" {
import construct = Reflect.construct;
Expand Down

0 comments on commit d160d82

Please sign in to comment.