Make IIIFInfo#Versions appear in doc

For whatever reasons, the possible values of `Versions` did not appear
in the built docs.
This commit is contained in:
Lutz Helm
2019-05-13 10:49:38 +02:00
parent 51cf9ee3a1
commit 04a28854c9

View File

@@ -97,9 +97,10 @@ import {assert} from '../asserts.js';
*/
/**
* @enum {string}
*/
export const Versions = {
* Enum representing the major IIIF Image API versions
* @enum {string}
*/
const Versions = {
VERSION1: 'version1',
VERSION2: 'version2',
VERSION3: 'version3'
@@ -424,3 +425,4 @@ class IIIFInfo {
}
export default IIIFInfo;
export {Versions};