mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-22 01:19:36 +08:00
style(): fix angular styles (#512)
* style(canva-camera): fix angular style * style(crop): fix angular style * style(file-chooser): fix angular style * style(file-opener): fix angular style * style(file): fix angular style * style(inappbrowser): fix angular style * style(instagram): fix angular style * style(is-debug): fix angular style * style(native-page-transitions): fix angular style * style(market): fix angular style * style(music-controls): fix angular style * style(nfc): fix angular style * style(pay-pal): fix angular style * style(power-management): fix angular style * style(securestorage): fix angular style * style(streaming-media): fix angular style * style(video-editor): fix angular style * style(youtube-video-player): fix angular style
This commit is contained in:
parent
1db1374226
commit
54460e2362
@ -1,4 +1,4 @@
|
|||||||
import {Plugin, Cordova} from './plugin';
|
import { Plugin, Cordova } from './plugin';
|
||||||
/**
|
/**
|
||||||
* @name CanvasCamera
|
* @name CanvasCamera
|
||||||
* @description
|
* @description
|
||||||
@ -76,7 +76,7 @@ export class CanvasCamera {
|
|||||||
* @returns {Promise<any>}
|
* @returns {Promise<any>}
|
||||||
*/
|
*/
|
||||||
@Cordova()
|
@Cordova()
|
||||||
static takePicture(): Promise<any> {return; }
|
static takePicture(): Promise<any> { return; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the flash mode
|
* Sets the flash mode
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import {Cordova, Plugin} from './plugin';
|
import { Cordova, Plugin } from './plugin';
|
||||||
/**
|
/**
|
||||||
* @name Crop
|
* @name Crop
|
||||||
* @description Crops images
|
* @description Crops images
|
||||||
@ -30,5 +30,5 @@ export class Crop {
|
|||||||
@Cordova({
|
@Cordova({
|
||||||
callbackOrder: 'reverse'
|
callbackOrder: 'reverse'
|
||||||
})
|
})
|
||||||
static crop(pathToImage: string, options?: {quality: number}): Promise<string> {return; }
|
static crop(pathToImage: string, options?: {quality: number}): Promise<string> { return; }
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import {Plugin, Cordova} from './plugin';
|
import { Plugin, Cordova } from './plugin';
|
||||||
/**
|
/**
|
||||||
* @name FileChooser
|
* @name FileChooser
|
||||||
* @description
|
* @description
|
||||||
@ -26,5 +26,5 @@ export class FileChooser {
|
|||||||
* Open a file
|
* Open a file
|
||||||
*/
|
*/
|
||||||
@Cordova()
|
@Cordova()
|
||||||
static open(): Promise<string> {return; }
|
static open(): Promise<string> { return; }
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import {Plugin, Cordova} from './plugin';
|
import { Plugin, Cordova } from './plugin';
|
||||||
/**
|
/**
|
||||||
* @name FileOpener
|
* @name FileOpener
|
||||||
* @description
|
* @description
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import {Plugin, Cordova} from './plugin';
|
import { Plugin, Cordova } from './plugin';
|
||||||
|
|
||||||
declare var window: any;
|
declare var window: any;
|
||||||
declare var cordova: any;
|
declare var cordova: any;
|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import { Plugin, CordovaInstance } from './plugin';
|
import { Plugin, CordovaInstance } from './plugin';
|
||||||
import { Observable } from 'rxjs/Observable';
|
import { Observable } from 'rxjs/Observable';
|
||||||
|
|
||||||
declare var cordova: any;
|
declare var cordova: any;
|
||||||
|
|
||||||
export interface InAppBrowserEvent extends Event {
|
export interface InAppBrowserEvent extends Event {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import {Plugin, Cordova} from './plugin';
|
import { Plugin, Cordova } from './plugin';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @name Instagram
|
* @name Instagram
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import {Plugin, Cordova} from './plugin';
|
import { Plugin, Cordova } from './plugin';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @name IsDebug
|
* @name IsDebug
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import {Plugin, Cordova} from './plugin';
|
import { Plugin, Cordova } from './plugin';
|
||||||
/**
|
/**
|
||||||
* @name Market
|
* @name Market
|
||||||
* @description
|
* @description
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import {Plugin, Cordova} from './plugin';
|
import { Plugin, Cordova } from './plugin';
|
||||||
import {Observable} from 'rxjs/Observable';
|
import { Observable } from 'rxjs/Observable';
|
||||||
/**
|
/**
|
||||||
* @name MusicControls
|
* @name MusicControls
|
||||||
* @description
|
* @description
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import {Plugin, Cordova} from './plugin';
|
import { Plugin, Cordova } from './plugin';
|
||||||
/**
|
/**
|
||||||
* @name NativePageTransitions
|
* @name NativePageTransitions
|
||||||
* @description
|
* @description
|
||||||
@ -38,21 +38,21 @@ export class NativePageTransitions {
|
|||||||
* @param options {TransitionOptions} Options for the transition
|
* @param options {TransitionOptions} Options for the transition
|
||||||
*/
|
*/
|
||||||
@Cordova()
|
@Cordova()
|
||||||
static slide(options: TransitionOptions): Promise<any> {return; }
|
static slide(options: TransitionOptions): Promise<any> { return; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Perform a flip animation
|
* Perform a flip animation
|
||||||
* @param options {TransitionOptions} Options for the transition
|
* @param options {TransitionOptions} Options for the transition
|
||||||
*/
|
*/
|
||||||
@Cordova()
|
@Cordova()
|
||||||
static flip(options: TransitionOptions): Promise<any> {return; }
|
static flip(options: TransitionOptions): Promise<any> { return; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Perform a fade animation
|
* Perform a fade animation
|
||||||
* @param options {TransitionOptions} Options for the transition
|
* @param options {TransitionOptions} Options for the transition
|
||||||
*/
|
*/
|
||||||
@Cordova({platforms: ['iOS', 'Android']})
|
@Cordova({platforms: ['iOS', 'Android']})
|
||||||
static fade(options: TransitionOptions): Promise<any> {return; }
|
static fade(options: TransitionOptions): Promise<any> { return; }
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -60,7 +60,7 @@ export class NativePageTransitions {
|
|||||||
* @param options {TransitionOptions} Options for the transition
|
* @param options {TransitionOptions} Options for the transition
|
||||||
*/
|
*/
|
||||||
@Cordova({platforms: ['iOS', 'Android']})
|
@Cordova({platforms: ['iOS', 'Android']})
|
||||||
static drawer(options: TransitionOptions): Promise<any> {return; }
|
static drawer(options: TransitionOptions): Promise<any> { return; }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -69,7 +69,7 @@ export class NativePageTransitions {
|
|||||||
* @param options {TransitionOptions} Options for the transition
|
* @param options {TransitionOptions} Options for the transition
|
||||||
*/
|
*/
|
||||||
@Cordova({platforms: ['iOS']})
|
@Cordova({platforms: ['iOS']})
|
||||||
static curl(options: TransitionOptions): Promise<any> {return; }
|
static curl(options: TransitionOptions): Promise<any> { return; }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import {Plugin, Cordova} from './plugin';
|
import { Plugin, Cordova } from './plugin';
|
||||||
import {Observable} from 'rxjs/Observable';
|
import { Observable } from 'rxjs/Observable';
|
||||||
/**
|
/**
|
||||||
* @name NFC
|
* @name NFC
|
||||||
* @description
|
* @description
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import {Plugin, Cordova} from './plugin';
|
import { Plugin, Cordova } from './plugin';
|
||||||
/**
|
/**
|
||||||
* @name PayPal
|
* @name PayPal
|
||||||
* @description
|
* @description
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import {Plugin, Cordova} from './plugin';
|
import { Plugin, Cordova } from './plugin';
|
||||||
/**
|
/**
|
||||||
* @name PowerManagement
|
* @name PowerManagement
|
||||||
* @description
|
* @description
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import { CordovaInstance, Plugin } from './plugin';
|
import { CordovaInstance, Plugin } from './plugin';
|
||||||
|
|
||||||
declare var cordova: any;
|
declare var cordova: any;
|
||||||
/**
|
/**
|
||||||
* @name Secure Storage
|
* @name Secure Storage
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import {Plugin, Cordova} from './plugin';
|
import { Plugin, Cordova } from './plugin';
|
||||||
/**
|
/**
|
||||||
* @name StreamingMedia
|
* @name StreamingMedia
|
||||||
* @description
|
* @description
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import {Plugin, Cordova} from './plugin';
|
import { Plugin, Cordova } from './plugin';
|
||||||
|
|
||||||
export interface TranscodeOptions {
|
export interface TranscodeOptions {
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import {Plugin, Cordova} from './plugin';
|
import { Plugin, Cordova } from './plugin';
|
||||||
/**
|
/**
|
||||||
* @name YoutubeVideoPlayer
|
* @name YoutubeVideoPlayer
|
||||||
* @description
|
* @description
|
||||||
|
Loading…
Reference in New Issue
Block a user