Migrate old externs 2/x

This commit is contained in:
2026-06-14 05:53:32 +08:00
parent 8702d252ff
commit 77a1e5c22e
84 changed files with 489 additions and 401 deletions
+26 -34
View File
@@ -1,35 +1,27 @@
/** @type {Object} */
_AstJson_.AJaxGetArticle = {};
/**
* @typedef {{
* status: boolean,
* ref_id: string,
* article_id: string,
* entry: !_AstJson_.AJaxGetArticle.Entry
* }}
*/
_AstJson_.AJaxGetArticle;
/** @type {Boolean} */
_AstJson_.AJaxGetArticle.status;
/** @type {String} */
_AstJson_.AJaxGetArticle.ref_id;
/** @type {String} */
_AstJson_.AJaxGetArticle.article_id;
/** @type {Object} */
_AstJson_.AJaxGetArticle.entry;
/** @type {String} */
_AstJson_.AJaxGetArticle.entry._id;
/** @type {String} */
_AstJson_.AJaxGetArticle.entry.slug;
/** @type {Boolean} */
_AstJson_.AJaxGetArticle.entry.archived;
/** @type {String} */
_AstJson_.AJaxGetArticle.entry.date_created;
/** @type {Boolean} */
_AstJson_.AJaxGetArticle.entry.draft;
/** @type {Boolean} */
_AstJson_.AJaxGetArticle.entry.featured;
/** @type {String} */
_AstJson_.AJaxGetArticle.entry.date_modified;
/** @type {String} */
_AstJson_.AJaxGetArticle.entry.date_published;
/** @type {Array} */
_AstJson_.AJaxGetArticle.entry.tags;
/** @type {Array} */
_AstJson_.AJaxGetArticle.entry.section;
/** @type {String} */
_AstJson_.AJaxGetArticle.entry.text;
/** @type {String} */
_AstJson_.AJaxGetArticle.entry.title;
/**
* @typedef {{
* _id: string,
* slug: string,
* archived: boolean,
* date_created: string,
* draft: boolean,
* featured: boolean,
* date_modified: string,
* date_published: string,
* tags: !Array<string>,
* section: !Array<string>,
* text: string,
* title: string
* }}
*/
_AstJson_.AJaxGetArticle.Entry;