Updates
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
export = LOCAL_DB_HANDLER;
|
||||
/**
|
||||
* DSQL user read-only DB handler
|
||||
* @param {object} params
|
||||
* @param {string} params.paradigm
|
||||
* @param {string} params.database
|
||||
* @param {string} params.queryString
|
||||
* @param {string[]} [params.queryValues]
|
||||
*/
|
||||
declare function LOCAL_DB_HANDLER(...args: any[]): Promise<any>;
|
||||
@@ -0,0 +1,12 @@
|
||||
export = NO_DB_HANDLER;
|
||||
/**
|
||||
* DSQL user read-only DB handler
|
||||
* @param {object} params
|
||||
* @param {string} params.paradigm
|
||||
* @param {string} params.database
|
||||
* @param {string} params.queryString
|
||||
* @param {string[]} [params.queryValues]
|
||||
*/ declare function NO_DB_HANDLER(...args: any[]): Promise<any> | {
|
||||
success: boolean;
|
||||
error: any;
|
||||
};
|
||||
@@ -0,0 +1,12 @@
|
||||
export = camelJoinedtoCamelSpace;
|
||||
/**
|
||||
* Convert Camel Joined Text to Camel Spaced Text
|
||||
* ==============================================================================
|
||||
* @description this function takes a camel cased text without spaces, and returns
|
||||
* a camel-case-spaced text
|
||||
*
|
||||
* @param {string} text - text string without spaces
|
||||
*
|
||||
* @returns {string | null}
|
||||
*/
|
||||
declare function camelJoinedtoCamelSpace(text: string): string | null;
|
||||
Vendored
+19
@@ -0,0 +1,19 @@
|
||||
/**
|
||||
*
|
||||
* @param {string | null | number} string
|
||||
* @param {(this: any, key: string, value: any) => any} [reviver]
|
||||
* @returns {Object<string, any> | Object<string, any>[] | undefined}
|
||||
*/
|
||||
export function parse(string: string | null | number, reviver?: (this: any, key: string, value: any) => any): {
|
||||
[x: string]: any;
|
||||
} | {
|
||||
[x: string]: any;
|
||||
}[] | undefined;
|
||||
/**
|
||||
*
|
||||
* @param {any} value
|
||||
* @param {((this: any, key: string, value: any) => any) | null} [replacer]
|
||||
* @param { string | number } [space]
|
||||
* @returns {string | undefined}
|
||||
*/
|
||||
export function stringify(value: any, replacer?: ((this: any, key: string, value: any) => any) | null, space?: string | number): string | undefined;
|
||||
Reference in New Issue
Block a user