@coolgk/utils
Version:
javascript, typescript utility and wrapper functions and classes: array, string, base64, ampq, bcrypt, cache, captcha, csv, email, jwt, number, pdf, tmp, token, unit conversion, url params, session, form data, google sign in, facebook sign in
56 lines (54 loc) • 2.07 kB
TypeScript
/*!
* @package @coolgk/utils
* @version 3.1.4
* @link https://github.com/coolgk/node-utils
* @license MIT
* @author Daniel Gong <daniel.k.gong@gmail.com>
*
* Copyright (c) 2017 Daniel Gong <daniel.k.gong@gmail.com>. All rights reserved.
* Licensed under the MIT License.
*/
import * as _amqp from './amqp';
export declare const amqp: typeof _amqp;
import * as _array from './array';
export declare const array: typeof _array;
import * as _base64 from './base64';
export declare const base64: typeof _base64;
import * as _bcrypt from './bcrypt';
export declare const bcrypt: typeof _bcrypt;
import * as _cache from './cache';
export declare const cache: typeof _cache;
import * as _captcha from './captcha';
export declare const captcha: typeof _captcha;
import * as _csv from './csv';
export declare const csv: typeof _csv;
import * as _email from './email';
export declare const email: typeof _email;
import * as _facebookSignIn from './facebook-sign-in';
export declare const facebookSignIn: typeof _facebookSignIn;
import * as _formdata from './formdata';
export declare const formdata: typeof _formdata;
import * as _googleSignIn from './google-sign-in';
export declare const googleSignIn: typeof _googleSignIn;
import * as _jwt from './jwt';
export declare const jwt: typeof _jwt;
import * as _number from './number';
export declare const number: typeof _number;
import * as _pdf from './pdf';
export declare const pdf: typeof _pdf;
import * as _queue from './queue';
export declare const queue: typeof _queue;
import * as _request from './request';
export declare const request: typeof _request;
import * as _session from './session';
export declare const session: typeof _session;
import * as _string from './string';
export declare const string: typeof _string;
import * as _tmp from './tmp';
export declare const tmp: typeof _tmp;
import * as _token from './token';
export declare const token: typeof _token;
import * as _unit from './unit';
export declare const unit: typeof _unit;
import * as _url from './url';
export declare const url: typeof _url;