sealcode / sealious

An extensible, declarative node framework
25 stars 2 forks source link

[Dokumentacja] Poprawienie sygnatur funkcji #174

Closed kuba-orlik closed 9 years ago

kuba-orlik commented 9 years ago

Każdy opis wymaganej funkcji w Sealiousie powinien zawierać sygnaturę tej funkcji - zgodną chociażby z tym standardem. Przykładowo, zamiast:

  • find - Retrieves documents from datastore. Its promise has to resolve with an array of documents (objects). A function with signature

    function(collection_name, query, options, output_options)

Powinniśmy pisać:

  • find : (collection_name: String, query: Object, options: Object, output_options: Object) => Promise - retrieves documents from datastore. Has to resolve with an array of documents (objects)