chore: since for classes in api.json (#19639)

This commit is contained in:
Yury Semikhatsky 2022-12-21 16:30:01 -08:00 committed by GitHub
parent e12cf19012
commit 2922eec8e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,6 +59,8 @@ function serializeClass(clazz) {
}
if (clazz.comment)
result.comment = clazz.comment;
if (clazz.since)
result.since = clazz.since;
result.members = clazz.membersArray.map(serializeMember);
return result;
}