mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-07 13:22:07 -05:00
Project documentation: use Type[] for 'typed' arrays.
This commit is contained in:
parent
8ab56a7ebd
commit
b52421c282
1 changed files with 4 additions and 4 deletions
|
@ -98,7 +98,7 @@ var Project = this.Project = Base.extend({
|
|||
/**
|
||||
* The selected items contained within the project.
|
||||
*
|
||||
* @type array
|
||||
* @type Item[]
|
||||
* @bean
|
||||
*/
|
||||
getSelectedItems: function() {
|
||||
|
@ -149,7 +149,7 @@ var Project = this.Project = Base.extend({
|
|||
* The layers contained within the project.
|
||||
*
|
||||
* @name Project#layers
|
||||
* @type array
|
||||
* @type Layer[]
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@ -164,14 +164,14 @@ var Project = this.Project = Base.extend({
|
|||
* The symbols contained within the project.
|
||||
*
|
||||
* @name Project#symbols
|
||||
* @type array
|
||||
* @type Symbol[]
|
||||
*/
|
||||
|
||||
/**
|
||||
* The views contained within the project.
|
||||
*
|
||||
* @name Project#views
|
||||
* @type array
|
||||
* @type View[]
|
||||
*/
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue