У меня есть служба с некоторой документацией, но когда я пытаюсь создать документы с помощью grunt-ngdocs, это не с помощью:
Warning: Don't know how to format @ngdoc: method Use --force to continue.
Вот что я пытаюсь сделать
(function(angular) {
'use strict';
angular.module('services.base64', [])
.factory(
'Base64',
[function() {
/**
* @ngdoc service
* @name Base64
* @module services.base64
* @description Provides encoding a string into base64, and decode base64 to a string
*/
return {
/**
* @ngdoc method
* @name Base64#encode
* @param {string}
* input the string you want to encode as base64
* @returns {string} the base64 encoded string
*/
encode : function(input) {
//...
},
/**
* @ngdoc method
* @name Base64#decode
* @param {string}
* input the base64 encoded string
* @returns {string} the decoded string
*/
decode : function(input) {
//...
}
};
}]);
}(angular));
Я уверен, что мне не хватает чего-то простого...