UNPKG

@thangk/easythemer

Version:

Easily generate shades from a colour palette for use in your app

20 lines (19 loc) 500 B
/** * @param object * @getters getResult(), hasErrors(), getErrorsList() * @result boolean * @description Validates if object is an object or an array */ export default class ValidateIsObject { private result; private errors; private errmsg; constructor(object: any); get getResult(): boolean; get hasErrors(): boolean; get getErrorsList(): string[]; private showErrors; private addError; private setErrorState; private isObject; }