mirror of
https://github.com/danbulant/docker-compose
synced 2026-06-24 17:31:53 +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 {object} options
|
||||||
* @param {boolean} options.log
|
* @param {boolean} options.log
|
||||||
* @param {cwd} options.cwd
|
* @param {string} options.cwd
|
||||||
*/
|
*/
|
||||||
const up = function (options) {
|
const up = function (options) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
|
|
@ -47,7 +47,7 @@ const up = function (options) {
|
||||||
/**
|
/**
|
||||||
* @param {object} options
|
* @param {object} options
|
||||||
* @param {boolean} options.log
|
* @param {boolean} options.log
|
||||||
* @param {cwd} options.cwd
|
* @param {string} options.cwd
|
||||||
*/
|
*/
|
||||||
const down = function (options) {
|
const down = function (options) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
|
|
@ -99,7 +99,7 @@ const stop = function (options) {
|
||||||
/**
|
/**
|
||||||
* @param {object} options
|
* @param {object} options
|
||||||
* @param {boolean} options.log
|
* @param {boolean} options.log
|
||||||
* @param {cwd} options.cwd
|
* @param {string} options.cwd
|
||||||
*/
|
*/
|
||||||
const kill = function (options) {
|
const kill = function (options) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "docker-compose",
|
"name": "docker-compose",
|
||||||
"version": "0.3.0",
|
"version": "0.3.1",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "./node_modules/tape/bin/tape test",
|
"test": "./node_modules/tape/bin/tape test",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue