import getMax from "./src/Array/getMax"; import getMin from "./src/Array/getMin"; import getUnique from "./src/Array/getUnique"; import customKey from "./src/Array/customKey"; import getClone from "./src/Object/getClone"; import eq from "./src/Functions/eq"; import parseQuery from "./src/Functions/parseQuery"; import stringifyQuery from "./src/Functions/stringifyQuery"; import getThousandsChar from "./src/Functions/getThousandsChar"; import randomNum from "./src/Functions/randomNum"; import getGtTenStr from "./src/Functions/getGtTenStr"; import gt from "./src/Functions/gt"; import lt from "./src/Functions/lt"; import isBrowser from "./src/Functions/isBrowser"; import isEmail from "./src/Functions/isEmail"; import isEmpty from "./src/Functions/isEmpty"; import isNull from "./src/Functions/isNull"; import isTel from "./src/Functions/isTel"; import isUndefined from "./src/Functions/isUndefined"; import isSafePaddWord from "./src/Functions/isSafePaddWord"; import isFunc from "./src/Functions/isFunc"; import debounce from "./src/Functions/debounce"; import throttle from "./src/Functions/throttle"; import event, { on, once, remove, setMaxCache, watchCache, trigger, getMaxCache } from './src/Object/event'; import diff from "./src/Date/diff"; import formatDate from "./src/Date/formatDate"; import getCalender from "./src/Date/getCalender"; import isZeroLen from "./src/Array/isZeroLen"; import isEmptyObj from "./src/Object/isEmptyObj"; import getType from "./src/Functions/getType"; import getDeepClone from "./src/Object/getDeepClone"; import getYmdHms from "./src/Date/getYmdHms"; import createNamespace from "./src/Functions/createNamespace"; import isIos from "./src/Functions/isIos"; import each from "./src/Object/each"; import getWeekRange from "./src/Date/getWeekRange"; import getTodayRange from "./src/Date/getTodayRange"; import getMonthRange from "./src/Date/getMonthRange"; import { default as db, setLocalDb, setSionDb, getLocalDb, getSionDb, removeLocalDb, removeSionDb, clearLocalDb, clearSionDb } from "./src/Object/db"; import valueLen from "./src/Functions/valueLen"; import specialChar from "./src/Functions/specialChar"; import getValue from "./src/Array/getValue"; import fullScreen from "./src/Object/fullScreen"; import isObject from "./src/Object/isObject"; import when from "./src/Functions/when"; import and from "./src/Functions/and"; import some from "./src/Object/some"; import compose from "./src/Functions/compose"; import composePromise from "./src/Functions/composePromise"; import chain from "./src/Object/chain"; import gte from "./src/Functions/gte"; import lte from "./src/Functions/lte"; import or from "./src/Functions/or"; import toArray from "./src/Array/toArray"; import ch from "./src/RegExp/ch"; import objToMap from "./src/Object/objToMap"; import toNumber from "./src/Functions/toNumber"; import isStr from "./src/Functions/isStr"; import isNumber from "./src/Functions/isNumber"; import mapToObj from "./src/Object/mapToObj"; import isArray from "./src/Array/isArray"; import createAvatar from "./src/Functions/createAvatar"; import daysOfMonth from "./src/Date/daysOfMonth"; import isDate from "./src/Date/isDate"; import deepFreeze from "./src/Object/deepFreeze"; import isPromise from "./src/Object/isPromise"; import { trim, trimStart, trimEnd } from "./src/Functions/trimString"; import toBoolean from "./src/Functions/toBoolean"; export { toBoolean, trim, trimStart, trimEnd, isPromise, deepFreeze, isDate, daysOfMonth, createAvatar, isArray, mapToObj, isNumber, isStr, toNumber, objToMap, ch, toArray, or, chain, composePromise, compose, lte, gte, some, and, when, isObject, fullScreen, getValue, event, specialChar, valueLen, db, setLocalDb, setSionDb, getLocalDb, getSionDb, removeLocalDb, removeSionDb, clearLocalDb, clearSionDb, getMonthRange, getTodayRange, getWeekRange, each, isIos, createNamespace, getDeepClone, getType, isEmptyObj, getMax, getMin, getUnique, isZeroLen, getClone, eq, lt, gt, stringifyQuery, isBrowser, isEmail, isEmpty, isNull, isTel, isUndefined, isSafePaddWord, isFunc, debounce, throttle, parseQuery, randomNum, getGtTenStr, getThousandsChar, customKey, on, once, remove, setMaxCache, watchCache, trigger, getMaxCache, getYmdHms, diff, formatDate, getCalender }; declare const _default: { toBoolean: (value: any) => boolean; trim: (str: string) => string; trimStart: (str: string) => string; trimEnd: (str: string) => string; isPromise: (promise: any) => any; deepFreeze: typeof deepFreeze; isDate: (date: any) => boolean; daysOfMonth: (date?: number | Date) => number; createAvatar: (name: string, config?: { bg: string; w: number; h: number; font: string; fillStyle: string; }) => string | undefined; isArray: (value: any) => boolean; mapToObj: (map: Map) => Object | undefined; isNumber: (value: any) => boolean; isStr: (str: unknown) => boolean; toNumber: (value: unknown) => number; objToMap: (value: Object) => Map | undefined; ch: (value: string) => { regExp: RegExp; isCh: boolean; }; toArray: (arr: any) => unknown[]; or: (param1: any, param2: any) => any; chain: typeof chain; composePromise: (...fns: Function[]) => void; compose: (...fns: any[]) => any; lte: (value: number, target: number) => boolean; gte: (value: number, target: number) => boolean; some: (origin: T, callBack: (key?: any, value?: any, self?: T | undefined) => boolean) => boolean; and: (param1: any, param2: any) => any; when: (pred: (param?: any) => boolean, whenTrue: (param?: any) => any) => (param: any) => any; isObject: (value: any) => boolean; fullScreen: { isFullScreen: () => boolean; exitFullscreen: () => void; requestFullscreen: (ele: any) => void; getFullscreenElement: () => any; addEventListener: (success: any, fail: any) => void; trigger: () => void; }; getValue: (args: any[], callBack: (value?: any, index?: number | undefined, self?: Object | undefined) => boolean) => any; event: { on: typeof on; once: typeof once; trigger: typeof trigger; remove: typeof remove; setMaxCache: typeof setMaxCache; getMaxCache: typeof getMaxCache; watchCache: typeof watchCache; }; specialChar: (value: string, reg?: RegExp) => { isSpecialChar: boolean; value: string; regExp: RegExp; }; valueLen: (value: string) => number; db: { setLocalDb: (key: any, value: any) => void; setSionDb: (key: any, value: any) => void; getLocalDb: (key: any) => any; getSionDb: (key: any) => any; removeLocalDb: (key: any) => void; removeSionDb: (key: any) => void; clearLocalDb: () => void | undefined; clearSionDb: () => void | undefined; }; setLocalDb: (key: any, value: any) => void; setSionDb: (key: any, value: any) => void; getLocalDb: (key: any) => any; getSionDb: (key: any) => any; removeLocalDb: (key: any) => void; removeSionDb: (key: any) => void; clearLocalDb: () => void | undefined; clearSionDb: () => void | undefined; getMonthRange: () => import("./src/Date/resetDate").range; getTodayRange: () => import("./src/Date/resetDate").range; getWeekRange: () => import("./src/Date/resetDate").range; each: (origin: any[] | { [key: string]: any; }, callBack: (key?: any, value?: any, self?: any) => void) => void; isIos: () => boolean; createNamespace: (name: string) => readonly [string, (el?: ((string | { [key: string]: any; }) | (string | { [key: string]: any; })[]) | undefined, mods?: ((string | { [key: string]: any; }) | (string | { [key: string]: any; })[]) | undefined) => string]; getYmdHms: (ms?: number | Date) => { year: number; month: number; date: number; hours: number; minutes: number; seconds: number; day: number; }; getDeepClone: typeof getDeepClone; getType: (value: any) => any; isEmptyObj: (origin: { [key: string]: any; }) => boolean; isZeroLen: (args: any[]) => boolean; customKey: (args: { [key: string]: any; }[], option: { key: string; customKey: string; skip?: (string | number | any[]) | undefined; isClone?: boolean | undefined; } | { key: string; customKey: string; skip?: (string | number | any[]) | undefined; isClone?: boolean | undefined; }[], isClone?: boolean) => any[]; getMax: (ages: number[]) => number; getMin: typeof getMin; getUnique: (args: any[]) => any[]; getClone: (origin: any[] | { [key: string]: any; }, target?: {}) => { [key: string]: any; }; eq: typeof eq; lt: (value: number, target: number) => boolean; gt: (value: number, target: number) => boolean; stringifyQuery: (params?: { [key: string]: any; }) => string; isBrowser: () => boolean; isEmail: (value: string) => boolean; isEmpty: (value: any) => boolean; isNull: (value: any) => boolean; isTel: (tel: string | number) => boolean; isUndefined: (value: any) => boolean; isSafePaddWord: (paddWord: string) => boolean; isFunc: (callBack: any) => boolean; debounce: (callBack: () => void, option?: number | import("./src/Functions/type").default, immediate?: boolean) => () => void; throttle: (callBack: () => void, option?: number | import("./src/Functions/type").default, immediate?: boolean) => () => void; parseQuery: (url: string) => Object; randomNum: (min: number, max: number) => number | void; getGtTenStr: (num: number) => string; getThousandsChar: (num: number, char?: string) => string; on: typeof on; once: typeof once; remove: typeof remove; setMaxCache: typeof setMaxCache; watchCache: typeof watchCache; trigger: typeof trigger; getMaxCache: typeof getMaxCache; diff: (origin: number | Date, target: number | Date, format?: import("./src/Date/formatDate").Format) => string; formatDate: (ms: number | Date, format?: import("./src/Date/formatDate").Format) => string; getCalender: (args: number | Date, format?: string) => string | undefined; }; export default _default;