google / tern-closure

A Tern plugin adding Closure support.
Apache License 2.0
32 stars 18 forks source link

typedef support #14

Open jgiles opened 10 years ago

jgiles commented 10 years ago

Example:

/** @typedef {{numProp: number}} */
var TypeDefType;
/** @type {TypeDefType} */
var typeDefVar;
typeDefVar; //: TypeDefType
typeDefVar.numProp; //: number