Skip to content

Commit

Permalink
Move typescript interfact to src folder
Browse files Browse the repository at this point in the history
  • Loading branch information
crabbly committed Apr 1, 2019
1 parent 9904041 commit 8ed393d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "A tiny javascript library to help printing from the web.",
"version": "1.0.55",
"main": "dist/print.js",
"types": "./index.d.ts",
"types": "src/index.d.ts",
"repository": "https://github.com/crabbly/Print.js",
"license": "MIT",
"dependencies": {},
Expand Down
2 changes: 1 addition & 1 deletion index.d.ts → src/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
declare type PrintTypes = 'pdf' | 'html' | 'image' | 'json';
declare type PrintTypes = 'pdf' | 'html' | 'image' | 'json' | 'raw-html';

export interface Configuration {
printable: any;
Expand Down

0 comments on commit 8ed393d

Please sign in to comment.