docs(events): fix private functions

This commit is contained in:
Ramon Henrique Ornelas
2016-09-23 15:01:00 -03:00
committed by Adam Bradley
parent a7315285c5
commit 86afdcc5a8

View File

@@ -106,6 +106,9 @@ export class Events {
}
}
/**
* @private
*/
export function setupEvents(platform: Platform): Events {
const events = new Events();
@@ -145,6 +148,9 @@ export function setupEvents(platform: Platform): Events {
return events;
}
/**
* @private
*/
export function setupProvideEvents(platform: Platform) {
return function() {
return setupEvents(platform);