MOBILE-3213 core: Run script that removes types from JSDoc

This commit is contained in:
Dani Palou 2019-12-11 08:21:20 +01:00
parent b427c8a52a
commit 8d30c0be97
13 changed files with 15 additions and 17 deletions

View File

@ -327,7 +327,7 @@ export class AddonBlockMyOverviewComponent extends CoreBlockBaseComponent implem
/** /**
* Set selected courses filter. * Set selected courses filter.
* *
* @param {string} filter Filter name to set. * @param filter Filter name to set.
*/ */
protected setCourseFilter(filter: string): void { protected setCourseFilter(filter: string): void {
this.selectedFilter = filter; this.selectedFilter = filter;

View File

@ -437,8 +437,6 @@ export class AddonCalendarListPage implements OnDestroy {
}); });
} }
/**
*/
protected filterEvents(): void { protected filterEvents(): void {
this.filteredEvents = this.calendarHelper.getFilteredEvents(this.events, this.filter, this.categories); this.filteredEvents = this.calendarHelper.getFilteredEvents(this.events, this.filter, this.categories);
} }

View File

@ -101,7 +101,7 @@ export class AddonModDataFieldLatlongComponent extends AddonModDataFieldPluginCo
/** /**
* Get user location. * Get user location.
* *
* @param {Event} $event The event. * @param $event The event.
*/ */
getLocation(event: Event): void { getLocation(event: Event): void {
event.preventDefault(); event.preventDefault();

View File

@ -1903,7 +1903,7 @@ export class CoreSite {
* Get a certain cache expiration delay. * Get a certain cache expiration delay.
* *
* @param updateFrequency The update frequency of the entry. * @param updateFrequency The update frequency of the entry.
* @return {number} Expiration delay. * @return Expiration delay.
*/ */
getExpirationDelay(updateFrequency?: number): number { getExpirationDelay(updateFrequency?: number): number {
let expirationDelay = this.UPDATE_FREQUENCIES[updateFrequency] || this.UPDATE_FREQUENCIES[CoreSite.FREQUENCY_USUALLY]; let expirationDelay = this.UPDATE_FREQUENCIES[updateFrequency] || this.UPDATE_FREQUENCIES[CoreSite.FREQUENCY_USUALLY];

View File

@ -65,7 +65,7 @@ export class CoreFilterDefaultHandler implements CoreFilterHandler {
/** /**
* Whether or not the handler is enabled on a site level. * Whether or not the handler is enabled on a site level.
* *
* @return {boolean|Promise<boolean>} Whether or not the handler is enabled on a site level. * @return Whether or not the handler is enabled on a site level.
*/ */
isEnabled(): boolean | Promise<boolean> { isEnabled(): boolean | Promise<boolean> {
return true; return true;

View File

@ -236,7 +236,7 @@ export class CoreFilterDelegate extends CoreDelegate {
* @param filter Filter to check. * @param filter Filter to check.
* @param options Options passed to the filters. * @param options Options passed to the filters.
* @param site Site. If not defined, current site. * @param site Site. If not defined, current site.
* @return {Promise<boolean>} Promise resolved with true: whether the filter should be applied. * @return Promise resolved with true: whether the filter should be applied.
*/ */
shouldBeApplied(filters: CoreFilterFilter[], options: CoreFilterFormatTextOptions, site?: CoreSite): Promise<boolean> { shouldBeApplied(filters: CoreFilterFilter[], options: CoreFilterFormatTextOptions, site?: CoreSite): Promise<boolean> {
// Wait for filters to be initialized. // Wait for filters to be initialized.

View File

@ -66,7 +66,7 @@ export class CoreH5PPluginFileHandler implements CorePluginFileHandler {
* CoreFilepoolProvider.extractDownloadableFilesFromHtml. * CoreFilepoolProvider.extractDownloadableFilesFromHtml.
* *
* @param container Container where to get the URLs from. * @param container Container where to get the URLs from.
* @return {string[]} List of URLs. * @return List of URLs.
*/ */
getDownloadableFilesFromHTML(container: HTMLElement): string[] { getDownloadableFilesFromHTML(container: HTMLElement): string[] {
const iframes = <HTMLIFrameElement[]> Array.from(container.querySelectorAll('iframe.h5p-iframe')); const iframes = <HTMLIFrameElement[]> Array.from(container.querySelectorAll('iframe.h5p-iframe'));

View File

@ -164,7 +164,7 @@ export class CoreAppProvider {
/** /**
* Returns whether the user agent is controlled by automation. I.e. Behat testing. * Returns whether the user agent is controlled by automation. I.e. Behat testing.
* *
* @return {boolean} True if the user agent is controlled by automation, false otherwise. * @return True if the user agent is controlled by automation, false otherwise.
*/ */
static isAutomated(): boolean { static isAutomated(): boolean {
return !!navigator.webdriver; return !!navigator.webdriver;

View File

@ -71,7 +71,7 @@ export interface CorePluginFileHandler extends CoreDelegateHandler {
* CoreFilepoolProvider.extractDownloadableFilesFromHtml. * CoreFilepoolProvider.extractDownloadableFilesFromHtml.
* *
* @param container Container where to get the URLs from. * @param container Container where to get the URLs from.
* @return {string[]} List of URLs. * @return List of URLs.
*/ */
getDownloadableFilesFromHTML?(container: HTMLElement): string[]; getDownloadableFilesFromHTML?(container: HTMLElement): string[];

View File

@ -78,8 +78,8 @@ export class CoreTextUtilsProvider {
/** /**
* Add ending slash from a path or URL. * Add ending slash from a path or URL.
* *
* @param {string} text Text to treat. * @param text Text to treat.
* @return {string} Treated text. * @return Treated text.
*/ */
addEndingSlash(text: string): string { addEndingSlash(text: string): string {
if (!text) { if (!text) {