UNPKG

@spaceone/design-system

Version:
17 lines (16 loc) 610 B
/** @function * @name copyTextToClipboard * @description copy given text to clipboard * @param {String} text * */ export declare const copyTextToClipboard: (t: any) => void; export declare const copyAnyData: (value: any) => void; /** @function * @name isNotEmpty * @param value * @returns {boolean} */ export declare const isNotEmpty: (value: any) => boolean; export declare const getColor: (col?: string | null | undefined) => any; export declare const getPageStart: (thisPage: number, pageSize: number) => number; export declare const getThisPage: (pageStart?: number, pageLimit?: number) => number;