This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree 1 file changed +33
-0
lines changed
1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -1441,6 +1441,11 @@ angular.NgModelController.prototype.$viewValue;
1441
1441
*/
1442
1442
angular . FormController = function ( ) { } ;
1443
1443
1444
+ /**
1445
+ * @param {* } control
1446
+ */
1447
+ angular . FormController . prototype . $addControl = function ( control ) { } ;
1448
+
1444
1449
/**
1445
1450
* @type {boolean }
1446
1451
*/
@@ -1456,11 +1461,39 @@ angular.FormController.prototype.$error;
1456
1461
*/
1457
1462
angular . FormController . prototype . $invalid ;
1458
1463
1464
+ /**
1465
+ * @type {string }
1466
+ */
1467
+ angular . FormController . prototype . $name ;
1468
+
1459
1469
/**
1460
1470
* @type {boolean }
1461
1471
*/
1462
1472
angular . FormController . prototype . $pristine ;
1463
1473
1474
+ /**
1475
+ * @param {* } control
1476
+ */
1477
+ angular . FormController . prototype . $removeControl = function ( control ) { } ;
1478
+
1479
+ /**
1480
+ * @type {function() }
1481
+ */
1482
+ angular . FormController . prototype . $setDirty = function ( ) { } ;
1483
+
1484
+ /**
1485
+ * @type {function() }
1486
+ */
1487
+ angular . FormController . prototype . $setPristine = function ( ) { } ;
1488
+
1489
+ /**
1490
+ * @param {string } validationToken
1491
+ * @param {boolean } isValid
1492
+ * @param {* } control
1493
+ */
1494
+ angular . FormController . prototype . $setValidity = function (
1495
+ validationToken , isValid , control ) { } ;
1496
+
1464
1497
/**
1465
1498
* @type {boolean }
1466
1499
*/
You can’t perform that action at this time.
0 commit comments