docs(): add private to extra classes

This commit is contained in:
Ibrahim Hadeed 2016-08-27 12:33:02 -04:00
parent a006cdb77b
commit b91740a91a
No known key found for this signature in database
GPG Key ID: 0431793F665481A4
3 changed files with 19 additions and 8 deletions

View File

@ -97,6 +97,9 @@ export class Mixpanel {
static get people(): MixpanelPeople {return mixpanel.people; }; static get people(): MixpanelPeople {return mixpanel.people; };
} }
/**
* @private
*/
export declare class MixpanelPeople { export declare class MixpanelPeople {
static identify(distinctId: string, onSuccess?: Function, onFail?: Function): void; static identify(distinctId: string, onSuccess?: Function, onFail?: Function): void;
static increment(peopleProperties: any, onSuccess?: Function, onFail?: Function): void; static increment(peopleProperties: any, onSuccess?: Function, onFail?: Function): void;

View File

@ -152,10 +152,12 @@ export class NFC {
static enabled(): Promise<any> {return; } static enabled(): Promise<any> {return; }
} }
/**
* @private
*/
export declare class Ndef { export declare class Ndef {
uriRecord(uri: string): any; static uriRecord(uri: string): any;
textRecord(text: string): any; static textRecord(text: string): any;
mimeMediaRecord(mimeType: string, payload: string): any; static mimeMediaRecord(mimeType: string, payload: string): any;
androidApplicationRecord(packageName: string): any; static androidApplicationRecord(packageName: string): any;
} }

View File

@ -84,7 +84,9 @@ export interface PayPalEnvironment {
PayPalEnvironmentProduction: string; PayPalEnvironmentProduction: string;
PayPalEnvironmentSandbox: string; PayPalEnvironmentSandbox: string;
} }
/**
* @private
*/
export declare class PayPalPayment { export declare class PayPalPayment {
/** /**
* Convenience constructor. * Convenience constructor.
@ -154,7 +156,9 @@ export interface PayPalConfigurationOptions {
sandboxUserPAssword?: string; sandboxUserPAssword?: string;
sandboxUserPin?: string; sandboxUserPin?: string;
} }
/**
* @private
*/
export declare class PayPalConfiguration { export declare class PayPalConfiguration {
/** /**
* You use a PayPalConfiguration object to configure many aspects of how the SDK behaves. * 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); new(options: PayPalConfigurationOptions);
} }
/**
* @private
*/
export declare class PayPalShippingAddress { export declare class PayPalShippingAddress {
/** /**
* See the documentation of the individual properties for more detail. * See the documentation of the individual properties for more detail.