UNPKG

jenesius-vue-form

Version:

Heavy form system for Vue.js

20 lines (19 loc) 717 B
import Form from "../classes/Form"; declare class debug { private static getName; static readonly colorName = "color: blue;"; static readonly colorDefault = "color: black;"; static readonly colorSuccess = "color: #42b883;"; static readonly colorFocus = "color: purple"; static readonly colorError = "color: red"; static msg(...params: any[]): void; static group(...params: any[]): void; static groupEnd(...params: any[]): void; static write(out: any, params: any): void; static newForm(form: Form): void; static newSubscription<T extends NamedElement>(parent: T, child: T): void; } export default debug; interface NamedElement { name?: string; }