diginext-utils
Version:
README.md
67 lines • 2.26 kB
TypeScript
/**
* Diginext Utils - Professional utility library
* @packageDocumentation
*/
export * as array from "./array";
export * as object from "./object";
export * as math from "./math";
export * as string from "./string";
export * as file from "./file";
export * as device from "./device";
export * as date from "./date";
export * as email from "./email";
export * as gameboi from "./gameboi";
export * as images from "./images";
export * as name from "./name";
export * as permission from "./permission";
export * as response from "./response";
export * as xconsole from "./xconsole";
export * as cached from "./cached";
export * as html from "./html";
export * as lib from "./lib";
export * as slug from "./Slug";
import * as arrayModule from "./array";
import * as objectModule from "./object";
import * as mathModule from "./math";
import * as stringModule from "./string";
import * as fileModule from "./file";
import * as deviceModule from "./device";
import * as dateModule from "./date";
import * as emailModule from "./email";
import * as gameboiModule from "./gameboi";
import * as imagesModule from "./images";
import * as nameModule from "./name";
import * as permissionModule from "./permission";
import * as responseModule from "./response";
import * as xconsoleModule from "./xconsole";
import * as cachedModule from "./cached";
import * as htmlModule from "./html";
import * as libModule from "./lib";
/**
* Default export maintaining backward compatibility
* @deprecated Use named exports instead for better tree-shaking
*/
declare const _default: {
array: typeof arrayModule;
object: typeof objectModule;
math: typeof mathModule;
string: typeof stringModule;
file: typeof fileModule;
device: typeof deviceModule;
date: typeof dateModule;
email: typeof emailModule;
gameboi: typeof gameboiModule;
images: typeof imagesModule;
name: typeof nameModule;
permission: typeof permissionModule;
response: typeof responseModule;
xconsole: typeof xconsoleModule;
cached: typeof cachedModule;
html: typeof htmlModule;
lib: typeof libModule;
makeSlug: (s: string, opt?: {
[key: string]: any;
}) => string;
};
export default _default;
//# sourceMappingURL=index.d.ts.map