diginext-utils
Version:
README.md
38 lines (37 loc) • 1.41 kB
TypeScript
import * as array from "./array";
import * as device from "./device";
import * as console from "./xconsole";
import * as browser from "./device/browser";
import * as camera from "./device/camera";
import * as math from "./math";
import * as xname from "./name";
import * as object from "./object";
import * as string from "./string";
import * as url from "./string/url";
import * as createDir from "./file/createDir";
import * as fileMove from "./file/fileMove";
import * as findFilesByExt from "./file/findFilesByExt";
import * as Timer from "./Timer";
import * as requestCamera from "./permission/requestCamera";
import * as requestDeviceOrientationControl from "./permission/requestDeviceOrientationControl";
import * as enableConsole from "./xconsole/enableConsole";
declare const utils: {
xname: typeof xname;
array: typeof array;
device: typeof device;
console: typeof console;
browser: typeof browser;
camera: typeof camera;
math: typeof math;
object: typeof object;
string: typeof string;
url: typeof url;
createDir: typeof createDir;
fileMove: typeof fileMove;
findFilesByExt: typeof findFilesByExt;
Timer: typeof Timer;
requestCamera: typeof requestCamera;
requestDeviceOrientationControl: typeof requestDeviceOrientationControl;
enableConsole: typeof enableConsole;
};
export default utils;