UNPKG
@bitjson/typedoc
Version:
latest (0.15.0-0)
0.15.0-0
Create api documentation for TypeScript projects.
typedoc.org
TypeStrong/TypeDoc
@bitjson/typedoc
/
dist
/
lib
/
models
/
types
/
array.d.ts
11 lines
(10 loc)
•
263 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
Type
}
from
'./index'
; export declare
class
ArrayType
extends
Type
{ elementType:
Type
; readonly
type
: string; constructor(elementType:
Type
); clone():
Type
; equals(
type
:
Type
): boolean; toObject():
any
; toString(): string; }