ideaz-element
Version:
<p align="center"> <a href="" target="_blank" rel="noopener noreferrer"> <img src="./docs/public/logo.svg" alt="Ideaz Element" width="180" style="width: 180px;" /> </a> </p>
7 lines (6 loc) • 420 B
TypeScript
export declare const getStrFullLength: (str?: string) => number;
export declare const cutStrByFullLength: (str: string | undefined, maxLength: number) => string;
export declare const toCamelCase: (str: string) => string;
export declare const toKebabCase: (str: string) => string;
export declare const getPxValue: (value?: string | number) => string;
export declare const convertToPx: (value: string | number) => number;