diff --git a/src/plugins/dialogs.ts b/src/plugins/dialogs.ts index 835d88034..cbd8607ba 100644 --- a/src/plugins/dialogs.ts +++ b/src/plugins/dialogs.ts @@ -1,4 +1,5 @@ -import {Plugin, Cordova} from './plugin'; +import { Cordova, Plugin } from './plugin'; + export interface PromptCallback { @@ -11,7 +12,6 @@ export interface PromptCallback { * The text entered in the prompt dialog box. (String) */ input1: string; - } @@ -53,7 +53,7 @@ export class Dialogs { message, title: string = 'Alert', buttonName: string = 'OK' - ): Promise {return; } + ): Promise { return; } /** * Displays a customizable confirmation dialog box. @@ -70,7 +70,7 @@ export class Dialogs { message, title: string = 'Confirm', buttonLabels: Array = ['OK', 'Cancel'] - ): Promise { return; } + ): Promise { return; } /** * Displays a native dialog box that is more customizable than the browser's prompt function. @@ -89,7 +89,7 @@ export class Dialogs { title: string = 'Prompt', buttonLabels: Array = ['OK', 'Cancel'], defaultText: string = '' - ): Promise { return; } + ): Promise { return; } /** @@ -99,6 +99,6 @@ export class Dialogs { @Cordova({ sync: true }) - static beep(times: number): void {} + static beep(times: number): void { } -} \ No newline at end of file +}