File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -43,14 +43,14 @@ declare namespace CssPropertyParser {
43
43
* @param {boolean } recursivelyResolve - recursively resolve additional
44
44
* longhand properties if the shorthands expand to additional shorthands. For
45
45
* example, the border property expands to border-width, which expands further
46
- * to border-left-width, border-right-width, etc.
46
+ * to border-left-width, border-right-width, etc. Defaults to false.
47
47
* @returns {Array } - an array containing the computed properties for the given
48
48
* shorthand property. Returns an empty array if the given property is not a
49
49
* valid property.
50
50
*/
51
51
function getShorthandComputedProperties (
52
52
shorthandProperty : string ,
53
- recursivelyResolve : boolean
53
+ recursivelyResolve ? : boolean
54
54
) : Array < string > ;
55
55
56
56
/**
You can’t perform that action at this time.
0 commit comments