@progress/kendo-angular-common
Version:
Kendo UI for Angular - Utility Package
31 lines (30 loc) • 973 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* @hidden
*/
export declare const isPresent: (value: any) => boolean;
/**
* @hidden
*/
export declare const isObjectPresent: (value: any) => boolean;
/**
* @hidden
*/
export declare const isString: (value: any) => value is string;
/**
* @hidden
*/
export declare const isObject: (value: any) => value is object;
/**
* @hidden
*/
export declare const splitStringToArray: (value: string) => string[];
/**
* Receives CSS class declarations either as an object, string or array and returns an array of the class names.
*
* @hidden
*/
export declare const parseCSSClassNames: (value: any) => Array<string>;