@appsemble/utils
Version:
Utility functions used in Appsemble internally
23 lines • 685 B
JavaScript
export const pathItems = {
get: {
tags: ['main'],
description: 'Get a list of timezones supported by the API',
operationId: 'getTimezones',
responses: {
200: {
description: 'A list of timezones supported by the API',
content: {
'application/json': {
schema: {
type: 'array',
items: {
type: 'string',
},
},
},
},
},
},
},
};
//# sourceMappingURL=timezones.js.map