You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Public AngularTS DateFilterFormat contract exposed through the global ng namespace for Closure-annotated applications.
1481
-
* @typedef {string}
1482
-
*/
1483
-
ng.DateFilterFormat;
1484
-
1485
1485
/**
1486
1486
* Public AngularTS DateFilterOptions contract exposed through the global ng namespace for Closure-annotated applications.
1487
1487
* @record
1488
1488
*/
1489
1489
ng.DateFilterOptions=function(){};
1490
1490
1491
-
/**
1492
-
* Public DateFilterOptions.locale member exposed by the AngularTS namespace contract.
1493
-
* @type {(string|undefined)}
1494
-
*/
1495
-
ng.DateFilterOptions.prototype.locale;
1496
-
1497
1491
/**
1498
1492
* Public AngularTS NumberFilterOptions contract exposed through the global ng namespace for Closure-annotated applications.
1499
1493
* @record
1500
1494
*/
1501
1495
ng.NumberFilterOptions=function(){};
1502
1496
1503
-
/**
1504
-
* Public NumberFilterOptions.locale member exposed by the AngularTS namespace contract.
1505
-
* @type {(string|undefined)}
1506
-
*/
1507
-
ng.NumberFilterOptions.prototype.locale;
1508
-
1509
1497
/**
1510
1498
* Public AngularTS CurrencyFilterOptions contract exposed through the global ng namespace for Closure-annotated applications.
1511
1499
* @record
1512
1500
*/
1513
1501
ng.CurrencyFilterOptions=function(){};
1514
1502
1515
1503
/**
1516
-
* Public CurrencyFilterOptions.locale member exposed by the AngularTS namespace contract.
1517
-
* @type {(string|undefined)}
1518
-
*/
1519
-
ng.CurrencyFilterOptions.prototype.locale;
1520
-
1521
-
/**
1522
-
* Public AngularTS RelativeTimeFilterOptions contract exposed through the global ng namespace for Closure-annotated applications.
1504
+
* An object with some or all of properties of `options` parameter of `Intl.RelativeTimeFormat` constructor. [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/RelativeTimeFormat#Parameters).
1523
1505
* @record
1524
1506
*/
1525
1507
ng.RelativeTimeFilterOptions=function(){};
1526
1508
1527
-
/**
1528
-
* Public RelativeTimeFilterOptions.locale member exposed by the AngularTS namespace contract.
1529
-
* @type {(string|undefined)}
1530
-
*/
1531
-
ng.RelativeTimeFilterOptions.prototype.locale;
1532
-
1533
1509
/**
1534
1510
* Function that serializes query params into a URL-encoded string.
* The name of the component to use for this view. The name of an AngularTS `.component()` which will be used for this view. Resolve data can be provided to the component via the component's `bindings` object. For each binding declared on the component, any resolve with the same name is set on the component's controller instance. Note: Mapping from resolve names to component inputs may be specified using [[bindings]]. #### Example: ```js .state('profile', { // Use the <my-profile></my-profile> component for this state. component: 'MyProfile', } ``` Note: When using `component` to define a view, you may _not_ use any of: `template`, `templateUrl`, `controller`.
* The view's controller function or name The controller function, or the name of a registered controller. The controller function will be used to control the contents of the [[directives.ngVIew]] directive. See: [[Ng1Controller]] for information about component-level router hooks.
0 commit comments