swc/bundler/tests/.cache/deno/da208af4ea18f9dd34a64c594b7863ccfb6dba7f.ts
강동윤 bbaf619f63
fix(bundler): Fix bugs (#1437)
swc_bundler:
 - [x] Fix wrapped esms. (denoland/deno#9307)
 - [x] Make test secure.
2021-03-02 17:33:03 +09:00

64 lines
1.7 KiB
TypeScript

// Loaded from https://deno.land/x/mysql/src/constant/mysql_types.ts
/** @ignore */
export const MYSQL_TYPE_DECIMAL = 0x00;
/** @ignore */
export const MYSQL_TYPE_TINY = 0x01;
/** @ignore */
export const MYSQL_TYPE_SHORT = 0x02;
/** @ignore */
export const MYSQL_TYPE_LONG = 0x03;
/** @ignore */
export const MYSQL_TYPE_FLOAT = 0x04;
/** @ignore */
export const MYSQL_TYPE_DOUBLE = 0x05;
/** @ignore */
export const MYSQL_TYPE_NULL = 0x06;
/** @ignore */
export const MYSQL_TYPE_TIMESTAMP = 0x07;
/** @ignore */
export const MYSQL_TYPE_LONGLONG = 0x08;
/** @ignore */
export const MYSQL_TYPE_INT24 = 0x09;
/** @ignore */
export const MYSQL_TYPE_DATE = 0x0a;
/** @ignore */
export const MYSQL_TYPE_TIME = 0x0b;
/** @ignore */
export const MYSQL_TYPE_DATETIME = 0x0c;
/** @ignore */
export const MYSQL_TYPE_YEAR = 0x0d;
/** @ignore */
export const MYSQL_TYPE_NEWDATE = 0x0e;
/** @ignore */
export const MYSQL_TYPE_VARCHAR = 0x0f;
/** @ignore */
export const MYSQL_TYPE_BIT = 0x10;
/** @ignore */
export const MYSQL_TYPE_TIMESTAMP2 = 0x11;
/** @ignore */
export const MYSQL_TYPE_DATETIME2 = 0x12;
/** @ignore */
export const MYSQL_TYPE_TIME2 = 0x13;
/** @ignore */
export const MYSQL_TYPE_NEWDECIMAL = 0xf6;
/** @ignore */
export const MYSQL_TYPE_ENUM = 0xf7;
/** @ignore */
export const MYSQL_TYPE_SET = 0xf8;
/** @ignore */
export const MYSQL_TYPE_TINY_BLOB = 0xf9;
/** @ignore */
export const MYSQL_TYPE_MEDIUM_BLOB = 0xfa;
/** @ignore */
export const MYSQL_TYPE_LONG_BLOB = 0xfb;
/** @ignore */
export const MYSQL_TYPE_BLOB = 0xfc;
/** @ignore */
export const MYSQL_TYPE_VAR_STRING = 0xfd;
/** @ignore */
export const MYSQL_TYPE_STRING = 0xfe;
/** @ignore */
export const MYSQL_TYPE_GEOMETRY = 0xff;