UNPKG

generator-angular2-with-router

Version:

A simple angular2 application having 3 pages with angular2 in build router to navigate between pages. It have all basic functionality which a standard angualr2 application needed.

9 lines (6 loc) 254 B
'use strict'; export class Constants { public static get ITEMS_PER_PAGE() : string { return "3"; } public static get CURRENT_PAGE() : string { return "1"; } public static get TOTAL_ITEMS() : string { return "5"; } }