У меня есть интерфейс TypeScript с односимвольным именем свойства (ограничение дизайна). Я хотел бы использовать JSDoc для документирования этого интерфейса, чтобы помочь с автозаполнением в vscode.
Вот текущий интерфейс:
export interface ISource {
b: string
d: string
f: string
h: string
M: number
L: number
P: number
n: string
r: string
u: string
p: string
}
Неработающие попытки:
/**
* @typedef {object} ISource
* @property {string} ISource.b - Bias: bias_text[rating.bias[0]],
* @property {string} ISource.d - Domain: rating.domain.replace(/^www\./, ""),
* @property {string} ISource.f - FacebookUrl: _.lowerCase(rating.facebook_url),
* @property {string} ISource.h - Host: `https://${rating.domain}`,
* @property {number} ISource.M - MozRankUrl: rating.moz_rank_url,
* @property {number} ISource.L - MozLinks: rating.moz_links,
* @property {number} ISource.P - MozPopularity: rating.moz_popularity,
* @property {string} ISource.n - Source: rating.source,
* @property {string} ISource.r - Reporting: _.upperCase(_.kebabCase(_.first(rating.factual_reporting))),
* @property {string} ISource.u - Url: url,
* @property {string} ISource.p - Path: path,
*/
export interface ISource {
b: string
d: string
f: string
h: string
M: number
L: number
P: number
n: string
r: string
u: string
p: string
}
и
export interface ISource {
b: string /** @property {string} b - Bias: bias_text[rating.bias[0]], */;
d: string /** @property {string} d - Domain: rating.domain.replace(/^www\./, ""), */;
f: string /** @property {string} f - FacebookUrl: _.lowerCase(rating.facebook_url), */;
h: string /** @property {string} h - Host: `https://${rating.domain}`, */;
M: number /** @property {string} M - MozRankUrl: rating.moz_rank_url, */;
L: number /** @property {string} L - MozLinks: rating.moz_links, */;
P: number /** @property {string} P - MozPopularity: rating.moz_popularity, */;
n: string /** @property {string} n - Source: rating.source, */;
r: string /** @property {string} r - Reporting: _.upperCase(_.kebabCase(_.first(rating.factual_reporting))), */;
u: string /** @property {string} u - Url: url, */;
p: string /** @property {string} p - Path: path, */;
}