From ce3e2ac794aeb690c62af3b8a0fbc219ec56e66e Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Sun, 21 Oct 2018 15:56:05 -0700 Subject: [PATCH] Prettier --- js/types.ts | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/js/types.ts b/js/types.ts index 4c0eb4c5..542fb88b 100644 --- a/js/types.ts +++ b/js/types.ts @@ -8,7 +8,7 @@ import { EqualizerState } from "./reducers/equalizer"; import { NetworkState } from "./reducers/network"; import { SerializedStateV1 } from "./serializedStates/v1Types"; import { TracksState } from "./reducers/tracks"; -import { IAudioMetadata, IOptions } from 'music-metadata-browser'; +import { IAudioMetadata, IOptions } from "music-metadata-browser"; export { WebampWindow, @@ -523,7 +523,6 @@ export interface AppState { * Ref: https://github.com/Borewit/music-metadata-browser/blob/master/src/index.ts */ export interface IMusicMetadataBrowserApi { - /** * Parse Web API File * @param {Blob} blob @@ -538,7 +537,10 @@ export interface IMusicMetadataBrowserApi { * @param {IOptions} options Parsing options * @returns {Promise} */ - fetchFromUrl(audioTrackUrl: string, options?: IOptions): Promise; + fetchFromUrl( + audioTrackUrl: string, + options?: IOptions + ): Promise; /** * Parse audio from Node Buffer @@ -547,7 +549,11 @@ export interface IMusicMetadataBrowserApi { * @param {IOptions} options Parsing options * @returns {Promise} */ - parseBuffer(buf: Buffer, mimeType?: string, options?: IOptions): Promise; + parseBuffer( + buf: Buffer, + mimeType?: string, + options?: IOptions + ): Promise; } export interface Extras {