@slsplus/migrate
Version:
Serverless Plus Migrate Tool
11 lines (10 loc) • 638 B
TypeScript
import { typeOf, deepClone } from '@ygkit/object';
import { AnyObject } from './typings';
declare const isUndefined: (val: any) => boolean;
declare const isObject: (obj: AnyObject) => boolean;
declare const isEmptyObject: (obj: AnyObject) => boolean;
declare const COMPONENTS: string[];
declare const isBaseComponent: (name: string) => boolean;
declare const isFrameworkComponent: (name?: string) => boolean;
declare const addProperty: (obj: AnyObject, prop: string, value: any) => AnyObject | undefined;
export { typeOf, deepClone, isObject, isUndefined, isEmptyObject, addProperty, COMPONENTS, isBaseComponent, isFrameworkComponent, };