Added begin_development and begin_test

Added status (changed completed field)
fixed internet status connection.
This commit is contained in:
Paolo Arena
2019-04-02 00:18:01 +02:00
parent cea5dd118a
commit 7cacf5c6ea
40 changed files with 592 additions and 278 deletions

View File

@@ -85,7 +85,7 @@ declare module 'vuelidate' {
*/
required?: boolean
/**
* Checks for equality with a given property. Locator might be either a sibling property name or a function, that will get your component as this and nested model which sibling properties under second parameter.
* Checks for equality with a given property. Locator might be either a sibling property nametranslate or a function, that will get your component as this and nested model which sibling properties under second parameter.
*/
sameAs?: boolean
/**
@@ -155,7 +155,7 @@ declare module 'vuelidate' {
/**
* Represents Vuelidate mixin data extending a Vue component instance. Have your Vue component options implement this
* @param {Type} T - The interface or type being used to store model data requiring validation
*
*
* @example
* export class Foo implements IVuelidate<IBar> {
* data() {
@@ -231,7 +231,7 @@ declare module 'vuelidate/lib/validators' {
*/
function required(value: any): boolean
/**
* Checks for equality with a given property. Locator might be either a sibling property name or a function, that will get your component as this and nested model which sibling properties under second parameter.
* Checks for equality with a given property. Locator might be either a sibling property nametranslate or a function, that will get your component as this and nested model which sibling properties under second parameter.
*/
function sameAs(locator: any): (value: any, vm?: any) => boolean
/**
@@ -247,4 +247,4 @@ declare module 'vuelidate/lib/validators' {
function minValue(value: number)
function maxValue(value: number)
}
}