Fix file-saver hyphen (#12507)

* Fix folder name for the 'file-saver' package.

* Better indentation.
This commit is contained in:
Daniel Rosenwasser 2016-11-05 19:12:01 -07:00 committed by Andy
parent f498c98b3b
commit fa723912af
3 changed files with 6 additions and 6 deletions

View File

@ -20,13 +20,13 @@ interface FileSaver {
* @summary File name.
* @type {DOMString}
*/
filename: string,
filename: string,
/**
* @summary Disable Unicode text encoding hints or not.
* @type {boolean}
*/
disableAutoBOM?: boolean
/**
* @summary Disable Unicode text encoding hints or not.
* @type {boolean}
*/
disableAutoBOM?: boolean
): void
}