mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-05-07 02:42:56 +08:00
docs(): add private to extra classes
This commit is contained in:
parent
a006cdb77b
commit
b91740a91a
@ -97,6 +97,9 @@ export class Mixpanel {
|
||||
static get people(): MixpanelPeople {return mixpanel.people; };
|
||||
|
||||
}
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
export declare class MixpanelPeople {
|
||||
static identify(distinctId: string, onSuccess?: Function, onFail?: Function): void;
|
||||
static increment(peopleProperties: any, onSuccess?: Function, onFail?: Function): void;
|
||||
|
@ -152,10 +152,12 @@ export class NFC {
|
||||
static enabled(): Promise<any> {return; }
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
export declare class Ndef {
|
||||
uriRecord(uri: string): any;
|
||||
textRecord(text: string): any;
|
||||
mimeMediaRecord(mimeType: string, payload: string): any;
|
||||
androidApplicationRecord(packageName: string): any;
|
||||
static uriRecord(uri: string): any;
|
||||
static textRecord(text: string): any;
|
||||
static mimeMediaRecord(mimeType: string, payload: string): any;
|
||||
static androidApplicationRecord(packageName: string): any;
|
||||
}
|
||||
|
@ -84,7 +84,9 @@ export interface PayPalEnvironment {
|
||||
PayPalEnvironmentProduction: string;
|
||||
PayPalEnvironmentSandbox: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
export declare class PayPalPayment {
|
||||
/**
|
||||
* Convenience constructor.
|
||||
@ -154,7 +156,9 @@ export interface PayPalConfigurationOptions {
|
||||
sandboxUserPAssword?: string;
|
||||
sandboxUserPin?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
export declare class PayPalConfiguration {
|
||||
/**
|
||||
* You use a PayPalConfiguration object to configure many aspects of how the SDK behaves.
|
||||
@ -162,7 +166,9 @@ export declare class PayPalConfiguration {
|
||||
*/
|
||||
new(options: PayPalConfigurationOptions);
|
||||
}
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
export declare class PayPalShippingAddress {
|
||||
/**
|
||||
* See the documentation of the individual properties for more detail.
|
||||
|
Loading…
x
Reference in New Issue
Block a user