case class TSTypeReference(name: String, impl: Option[TypescriptType] = None) extends TypescriptNamedType with TypescriptAggregateType with Product with Serializable
This type is used as a marker that a type with this name exists and is either already defined or externally defined Not a real Typescript type
- impl
The implementation of the type if it is known, so that the nested types can be outputted even if not directly referenced
- Note
name takes from [Typescript specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md#3.8.2)
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- TSTypeReference
- Serializable
- Serializable
- Product
- Equals
- TypescriptAggregateType
- TypescriptNamedType
- TypescriptType
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
new
TSTypeReference(name: String, impl: Option[TypescriptType] = None)
- impl
The implementation of the type if it is known, so that the nested types can be outputted even if not directly referenced
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
array: TSArray
- Definition Classes
- TypescriptType
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
asReference: TSTypeReference
- Definition Classes
- TSTypeReference → TypescriptNamedType
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- val impl: Option[TypescriptType]
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
val
name: String
- Definition Classes
- TSTypeReference → TypescriptNamedType
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
nested: Set[TypescriptType]
- Definition Classes
- TSTypeReference → TypescriptAggregateType
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
|(tt: TypescriptType): TSUnion
- Definition Classes
- TypescriptType