mirror of
https://github.com/danbulant/docker-compose
synced 2026-06-11 10:41:29 +00:00
fix jsdoc param types
This commit is contained in:
parent
45b4b3057f
commit
04a53032dc
2 changed files with 4 additions and 4 deletions
6
index.js
6
index.js
|
|
@ -21,7 +21,7 @@ const logStandards = function (standards) {
|
|||
/**
|
||||
* @param {object} options
|
||||
* @param {boolean} options.log
|
||||
* @param {cwd} options.cwd
|
||||
* @param {string} options.cwd
|
||||
*/
|
||||
const up = function (options) {
|
||||
return new Promise((resolve, reject) => {
|
||||
|
|
@ -47,7 +47,7 @@ const up = function (options) {
|
|||
/**
|
||||
* @param {object} options
|
||||
* @param {boolean} options.log
|
||||
* @param {cwd} options.cwd
|
||||
* @param {string} options.cwd
|
||||
*/
|
||||
const down = function (options) {
|
||||
return new Promise((resolve, reject) => {
|
||||
|
|
@ -99,7 +99,7 @@ const stop = function (options) {
|
|||
/**
|
||||
* @param {object} options
|
||||
* @param {boolean} options.log
|
||||
* @param {cwd} options.cwd
|
||||
* @param {string} options.cwd
|
||||
*/
|
||||
const kill = function (options) {
|
||||
return new Promise((resolve, reject) => {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "docker-compose",
|
||||
"version": "0.3.0",
|
||||
"version": "0.3.1",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "./node_modules/tape/bin/tape test",
|
||||
|
|
|
|||
Loading…
Reference in a new issue