@appsemble/utils
Version:
Utility functions used in Appsemble internally
20 lines • 592 B
JavaScript
export const pathItems = {
get: {
description: 'Fetch all training ids stored on the server',
operationId: 'getTrainingIds',
responses: {
200: {
description: "An array of all training Id's",
content: {
'application/json': {
schema: {
type: 'array',
items: { type: 'string' },
},
},
},
},
},
},
};
//# sourceMappingURL=trainingIds.js.map