The list below outlines which constructs are currently supported when using JSDoc annotations to provide type information in JavaScript files.

Note any tags which are not explicitly listed below (such as @async) are not yet supported.

  • @type
  • @param (or @arg or @argument)
  • @returns (or @return)
  • @typedef
  • @callback
  • @template
  • @class (or @constructor)
  • @this
  • @extends (or @augments)
  • @enum

The meaning is usually the same, or a superset, of the meaning of the tag given at jsdoc.app. The code below describes the differences and gives some example usage of each tag.

Note: You can use the playground to explore JSDoc support.

@type

You can use the “@type” tag and reference a type name (either primitive, defined in a TypeScript declaration, or in a JSDoc “@typedef” tag). You can use most JSDoc types and any TypeScript type, from the most basic like string to the most advanced, like conditional types.

  1. /**
  2. * @type {string}
  3. */
  4. var s;
  5. /** @type {Window} */
  6. var win;
  7. /** @type {PromiseLike<string>} */
  8. var promisedString;
  9. // You can specify an HTML Element with DOM properties
  10. /** @type {HTMLElement} */
  11. var myElement = document.querySelector(selector);
  12. element.dataset.myData = "";Try

@type can specify a union type — for example, something can be either a string or a boolean.

  1. /**
  2. * @type {(string | boolean)}
  3. */
  4. var sb;Try

Note that parentheses are optional for union types.

  1. /**
  2. * @type {string | boolean}
  3. */
  4. var sb;Try

You can specify array types using a variety of syntaxes:

  1. /** @type {number[]} */
  2. var ns;
  3. /** @type {Array.<number>} */
  4. var nds;
  5. /** @type {Array<number>} */
  6. var nas;Try

You can also specify object literal types. For example, an object with properties ‘a’ (string) and ‘b’ (number) uses the following syntax:

  1. /** @type {{ a: string, b: number }} */
  2. var var9;Try

You can specify map-like and array-like objects using string and number index signatures, using either standard JSDoc syntax or TypeScript syntax.

  1. /**
  2. * A map-like object that maps arbitrary `string` properties to `number`s.
  3. *
  4. * @type {Object.<string, number>}
  5. */
  6. var stringToNumber;
  7. /** @type {Object.<number, object>} */
  8. var arrayLike;Try

The preceding two types are equivalent to the TypeScript types { [x: string]: number } and { [x: number]: any }. The compiler understands both syntaxes.

You can specify function types using either TypeScript or Closure syntax:

  1. /** @type {function(string, boolean): number} Closure syntax */
  2. var sbn;
  3. /** @type {(s: string, b: boolean) => number} TypeScript syntax */
  4. var sbn2;Try

Or you can just use the unspecified Function type:

  1. /** @type {Function} */
  2. var fn7;
  3. /** @type {function} */
  4. var fn6;Try

Other types from Closure also work:

  1. /**
  2. * @type {*} - can be 'any' type
  3. */
  4. var star;
  5. /**
  6. * @type {?} - unknown type (same as 'any')
  7. */
  8. var question;Try

Casts

TypeScript borrows cast syntax from Closure. This lets you cast types to other types by adding a @type tag before any parenthesized expression.

  1. /**
  2. * @type {number | string}
  3. */
  4. var numberOrString = Math.random() < 0.5 ? "hello" : 100;
  5. var typeAssertedNumber = /** @type {number} */ (numberOrString);Try

Import types

You can also import declarations from other files using import types. This syntax is TypeScript-specific and differs from the JSDoc standard:

  1. // @filename: types.d.ts
  2. export type Pet = {
  3. name: string,
  4. };
  5. // @filename: main.js
  6. /**
  7. * @param p { import("./types").Pet }
  8. */
  9. function walk(p) {
  10. console.log(`Walking ${p.name}...`);
  11. }Try

import types can also be used in type alias declarations:

  1. /**
  2. * @typedef { import("./types").Pet } Pet
  3. */
  4. /**
  5. * @type {Pet}
  6. */
  7. var myPet;
  8. myPet.name;Try

import types can be used to get the type of a value from a module if you don’t know the type, or if it has a large type that is annoying to type:

  1. /**
  2. * @type {typeof import("./accounts").userAccount }
  3. */
  4. var x = require("./accounts").userAccount;Try

@param and @returns

@param uses the same type syntax as @type, but adds a parameter name. The parameter may also be declared optional by surrounding the name with square brackets:

  1. // Parameters may be declared in a variety of syntactic forms
  2. /**
  3. * @param {string} p1 - A string param.
  4. * @param {string=} p2 - An optional param (Closure syntax)
  5. * @param {string} [p3] - Another optional param (JSDoc syntax).
  6. * @param {string} [p4="test"] - An optional param with a default value
  7. * @return {string} This is the result
  8. */
  9. function stringsStringStrings(p1, p2, p3, p4) {
  10. // TODO
  11. }Try

Likewise, for the return type of a function:

  1. /**
  2. * @return {PromiseLike<string>}
  3. */
  4. function ps() {}
  5. /**
  6. * @returns {{ a: string, b: number }} - May use '@returns' as well as '@return'
  7. */
  8. function ab() {}Try

@typedef, @callback, and @param

@typedef may be used to define complex types. Similar syntax works with @param.

  1. /**
  2. * @typedef {Object} SpecialType - creates a new type named 'SpecialType'
  3. * @property {string} prop1 - a string property of SpecialType
  4. * @property {number} prop2 - a number property of SpecialType
  5. * @property {number=} prop3 - an optional number property of SpecialType
  6. * @prop {number} [prop4] - an optional number property of SpecialType
  7. * @prop {number} [prop5=42] - an optional number property of SpecialType with default
  8. */
  9. /** @type {SpecialType} */
  10. var specialTypeObject;
  11. specialTypeObject.prop3;Try

You can use either object or Object on the first line.

  1. /**
  2. * @typedef {object} SpecialType1 - creates a new type named 'SpecialType'
  3. * @property {string} prop1 - a string property of SpecialType
  4. * @property {number} prop2 - a number property of SpecialType
  5. * @property {number=} prop3 - an optional number property of SpecialType
  6. */
  7. /** @type {SpecialType1} */
  8. var specialTypeObject1;Try

@param allows a similar syntax for one-off type specifications. Note that the nested property names must be prefixed with the name of the parameter:

  1. /**
  2. * @param {Object} options - The shape is the same as SpecialType above
  3. * @param {string} options.prop1
  4. * @param {number} options.prop2
  5. * @param {number=} options.prop3
  6. * @param {number} [options.prop4]
  7. * @param {number} [options.prop5=42]
  8. */
  9. function special(options) {
  10. return (options.prop4 || 1001) + options.prop5;
  11. }Try

@callback is similar to @typedef, but it specifies a function type instead of an object type:

  1. /**
  2. * @callback Predicate
  3. * @param {string} data
  4. * @param {number} [index]
  5. * @returns {boolean}
  6. */
  7. /** @type {Predicate} */
  8. const ok = (s) => !(s.length % 2);Try

Of course, any of these types can be declared using TypeScript syntax in a single-line @typedef:

  1. /** @typedef {{ prop1: string, prop2: string, prop3?: number }} SpecialType */
  2. /** @typedef {(data: string, index?: number) => boolean} Predicate */

@template

You can declare generic functions with the @template tag:

  1. /**
  2. * @template T
  3. * @param {T} x - A generic parameter that flows through to the return type
  4. * @return {T}
  5. */
  6. function id(x) {
  7. return x;
  8. }
  9. const a = id("string");
  10. const b = id(123);
  11. const c = id({});Try

Use comma or multiple tags to declare multiple type parameters:

  1. /**
  2. * @template T,U,V
  3. * @template W,X
  4. */

You can also specify a type constraint before the type parameter name. Only the first type parameter in a list is constrained:

  1. /**
  2. * @template {string} K - K must be a string or string literal
  3. * @template {{ serious(): string }} Seriousalizable - must have a serious method
  4. * @param {K} key
  5. * @param {Seriousalizable} object
  6. */
  7. function seriousalize(key, object) {
  8. // ????
  9. }Try

Declaring generic classes or types is unsupported.

Classes

Classes can be declared as ES6 classes.

  1. class C {
  2. /**
  3. * @param {number} data
  4. */
  5. constructor(data) {
  6. // property types can be inferred
  7. this.name = "foo";
  8. // or set explicitly
  9. /** @type {string | null} */
  10. this.title = null;
  11. // or simply annotated, if they're set elsewhere
  12. /** @type {number} */
  13. this.size;
  14. this.initialize(data); // Should error, initializer expects a string
  15. }
  16. /**
  17. * @param {string} s
  18. */
  19. initialize = function (s) {
  20. this.size = s.length;
  21. };
  22. }
  23. var c = new C(0);
  24. // C should only be called with new, but
  25. // because it is JavaScript, this is allowed and
  26. // considered an 'any'.
  27. var result = C(1);Try

They can also be declared as constructor functions, as described in the next section:

@constructor

The compiler infers constructor functions based on this-property assignments, but you can make checking stricter and suggestions better if you add a @constructor tag:

  1. /**
  2. * @constructor
  3. * @param {number} data
  4. */
  5. function C(data) {
  6. // property types can be inferred
  7. this.name = "foo";
  8. // or set explicitly
  9. /** @type {string | null} */
  10. this.title = null;
  11. // or simply annotated, if they're set elsewhere
  12. /** @type {number} */
  13. this.size;
  14. this.initialize(data);
  15. Argument of type 'number' is not assignable to parameter of type 'string'.2345Argument of type 'number' is not assignable to parameter of type 'string'.}
  16. /**
  17. * @param {string} s
  18. */
  19. C.prototype.initialize = function (s) {
  20. this.size = s.length;
  21. };
  22. var c = new C(0);
  23. c.size;
  24. var result = C(1);
  25. Value of type 'typeof C' is not callable. Did you mean to include 'new'?2348Value of type 'typeof C' is not callable. Did you mean to include 'new'?Try

Note: Error messages only show up in JS codebases with a JSConfig and checkJs enabled.

With @constructor, this is checked inside the constructor function C, so you will get suggestions for the initialize method and an error if you pass it a number. Your editor may also show warnings if you call C instead of constructing it.

Unfortunately, this means that constructor functions that are also callable cannot use @constructor.

@this

The compiler can usually figure out the type of this when it has some context to work with. When it doesn’t, you can explicitly specify the type of this with @this:

  1. /**
  2. * @this {HTMLElement}
  3. * @param {*} e
  4. */
  5. function callbackForLater(e) {
  6. this.clientHeight = parseInt(e); // should be fine!
  7. }Try

@extends

When Javascript classes extend a generic base class, there is nowhere to specify what the type parameter should be. The @extends tag provides a place for that type parameter:

  1. /**
  2. * @template T
  3. * @extends {Set<T>}
  4. */
  5. class SortableSet extends Set {
  6. // ...
  7. }Try

Note that @extends only works with classes. Currently, there is no way for a constructor function extend a class.

@enum

The @enum tag allows you to create an object literal whose members are all of a specified type. Unlike most object literals in Javascript, it does not allow other members.

  1. /** @enum {number} */
  2. const JSDocState = {
  3. BeginningOfLine: 0,
  4. SawAsterisk: 1,
  5. SavingComments: 2,
  6. };
  7. JSDocState.SawAsterisk;Try

Note that @enum is quite different from, and much simpler than, TypeScript’s enum. However, unlike TypeScript’s enums, @enum can have any type:

  1. /** @enum {function(number): number} */
  2. const MathFuncs = {
  3. add1: (n) => n + 1,
  4. id: (n) => -n,
  5. sub1: (n) => n - 1,
  6. };
  7. MathFuncs.add1;Try

More examples

  1. var someObj = {
  2. /**
  3. * @param {string} param1 - Docs on property assignments work
  4. */
  5. x: function (param1) {},
  6. };
  7. /**
  8. * As do docs on variable assignments
  9. * @return {Window}
  10. */
  11. let someFunc = function () {};
  12. /**
  13. * And class methods
  14. * @param {string} greeting The greeting to use
  15. */
  16. Foo.prototype.sayHi = (greeting) => console.log("Hi!");
  17. /**
  18. * And arrow functions expressions
  19. * @param {number} x - A multiplier
  20. */
  21. let myArrow = (x) => x * x;
  22. /**
  23. * Which means it works for stateless function components in JSX too
  24. * @param {{a: string, b: number}} test - Some param
  25. */
  26. var sfc = (test) => <div>{test.a.charAt(0)}</div>;
  27. /**
  28. * A parameter can be a class constructor, using Closure syntax.
  29. *
  30. * @param {{new(...args: any[]): object}} C - The class to register
  31. */
  32. function registerClass(C) {}
  33. /**
  34. * @param {...string} p1 - A 'rest' arg (array) of strings. (treated as 'any')
  35. */
  36. function fn10(p1) {}
  37. /**
  38. * @param {...string} p1 - A 'rest' arg (array) of strings. (treated as 'any')
  39. */
  40. function fn9(p1) {
  41. return p1.join();
  42. }Try

Patterns that are known NOT to be supported

Referring to objects in the value space as types doesn’t work unless the object also creates a type, like a constructor function.

  1. function aNormalFunction() {}
  2. /**
  3. * @type {aNormalFunction}
  4. */
  5. var wrong;
  6. /**
  7. * Use 'typeof' instead:
  8. * @type {typeof aNormalFunction}
  9. */
  10. var right;Try

Postfix equals on a property type in an object literal type doesn’t specify an optional property:

  1. /**
  2. * @type {{ a: string, b: number= }}
  3. */
  4. var wrong;
  5. /**
  6. * Use postfix question on the property name instead:
  7. * @type {{ a: string, b?: number }}
  8. */
  9. var right;Try

Nullable types only have meaning if strictNullChecks is on:

  1. /**
  2. * @type {?number}
  3. * With strictNullChecks: true -- number | null
  4. * With strictNullChecks: false -- number
  5. */
  6. var nullable;Try

You can also use a union type:

  1. /**
  2. * @type {number | null}
  3. * With strictNullChecks: true -- number | null
  4. * With strictNullChecks: false -- number
  5. */
  6. var unionNullable;Try

Non-nullable types have no meaning and are treated just as their original type:

  1. /**
  2. * @type {!number}
  3. * Just has type number
  4. */
  5. var normal;Try

Unlike JSDoc’s type system, TypeScript only allows you to mark types as containing null or not. There is no explicit non-nullability — if strictNullChecks is on, then number is not nullable. If it is off, then number is nullable.

Unsupported tags

TypeScript ignores any unsupported JSDoc tags.

The following tags have open issues to support them: