@zeplin/sdk
Version:
Zeplin API client for JavaScript
44 lines (41 loc) • 1.73 kB
JavaScript
;
require("core-js/modules/es.object.define-property.js");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.transformScreenAnnotationNoteTypeEnumToJSON = exports.transformJSONToScreenAnnotationNoteTypeEnum = exports.ScreenAnnotationNoteTypeEnum = void 0;
/* tslint:disable */
/* eslint-disable */
/**
* Zeplin API
* Access your resources in Zeplin
*
* Contact: support@zeplin.io
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var transformScreenAnnotationNoteTypeEnumToJSON = function transformScreenAnnotationNoteTypeEnumToJSON(value) {
return value;
};
exports.transformScreenAnnotationNoteTypeEnumToJSON = transformScreenAnnotationNoteTypeEnumToJSON;
var transformJSONToScreenAnnotationNoteTypeEnum = function transformJSONToScreenAnnotationNoteTypeEnum(value) {
return value;
};
/**
* Type of the annotation note
* @export
* @enum {string}
*/
exports.transformJSONToScreenAnnotationNoteTypeEnum = transformJSONToScreenAnnotationNoteTypeEnum;
var ScreenAnnotationNoteTypeEnum;
exports.ScreenAnnotationNoteTypeEnum = ScreenAnnotationNoteTypeEnum;
(function (ScreenAnnotationNoteTypeEnum) {
ScreenAnnotationNoteTypeEnum["BEHAVIOR"] = "Behavior";
ScreenAnnotationNoteTypeEnum["REQUIREMENT"] = "Requirement";
ScreenAnnotationNoteTypeEnum["ANIMATION"] = "Animation";
ScreenAnnotationNoteTypeEnum["ACCESSIBILITY"] = "Accessibility";
ScreenAnnotationNoteTypeEnum["API"] = "API";
ScreenAnnotationNoteTypeEnum["TRACKING"] = "Tracking";
})(ScreenAnnotationNoteTypeEnum || (exports.ScreenAnnotationNoteTypeEnum = ScreenAnnotationNoteTypeEnum = {}));