@sasjs/adapter
Version:
JavaScript adapter for SAS
15 lines (14 loc) • 544 B
TypeScript
export declare const MORE_INFO = "For more info see https://sasjs.io/sasjs-adapter/#request-response";
export declare const INVALID_TABLE_STRUCTURE: string;
/**
* This function validates the input data structure and table naming convention
*
* @param data A json object that contains one or more tables, it can also be null
* @returns An object which contains two attributes: 1) status: boolean, 2) msg: string
*/
export declare const validateInput: (data: {
[key: string]: any;
} | null) => {
status: boolean;
msg: string;
};