10 lines
232 B
TypeScript
10 lines
232 B
TypeScript
import { DSQL_TableSchemaType } from "../../types";
|
|
/**
|
|
* # Add User Table to Database
|
|
*/
|
|
export default function grabNewUsersTableSchema(params: {
|
|
payload?: {
|
|
[s: string]: any;
|
|
};
|
|
}): DSQL_TableSchemaType | null;
|