File tree Expand file tree Collapse file tree 2 files changed +21
-5
lines changed
math/base/special/docs/types Expand file tree Collapse file tree 2 files changed +21
-5
lines changed Original file line number Diff line number Diff line change 2121/* tslint:disable:max-line-length */
2222/* tslint:disable:max-file-line-count */
2323
24+ import log = require( '@stdlib/console/log' ) ;
25+
2426/**
2527* Interface describing the `console` namespace.
2628*/
27- interface Namespace { }
29+ interface Namespace {
30+ /**
31+ * Outputs a message to the debugger console.
32+ *
33+ * @param data - data to log
34+ * @param args - additional arguments (including substitution values)
35+ *
36+ * @example
37+ * ns.log( 'Hello, World!' );
38+ *
39+ * @example
40+ * ns.log( 'Hello, %s!', 'World' );
41+ */
42+ log : typeof log ;
43+ }
2844
2945/**
30- * Console .
46+ * Debugger console .
3147*/
3248declare var ns : Namespace ;
3349
Original file line number Diff line number Diff line change @@ -761,7 +761,7 @@ interface Namespace {
761761 atan2 : typeof atan2 ;
762762
763763 /**
764- * Computes the hyperbolic arctangent of a number.
764+ * Computes the hyperbolic arctangent of a double-precision floating-point number.
765765 *
766766 * @param x - input value
767767 * @returns hyperbolic arctangent
@@ -4095,7 +4095,7 @@ interface Namespace {
40954095 kernelBetaincinv : typeof kernelBetaincinv ;
40964096
40974097 /**
4098- * Computes the cosine of a number on `[-π/4, π/4]`.
4098+ * Computes the cosine of a double-precision floating-point number on `[-π/4, π/4]`.
40994099 *
41004100 * ## Notes
41014101 *
@@ -4163,7 +4163,7 @@ interface Namespace {
41634163 kernelSin : typeof kernelSin ;
41644164
41654165 /**
4166- * Computes the tangent of a number on `[-π/4, π/4]`.
4166+ * Computes the tangent of a double-precision floating-point number on `[-π/4, π/4]`.
41674167 *
41684168 * ## Notes
41694169 *
You can’t perform that action at this time.
0 commit comments