import { DSQL_DatabaseSchemaType } from "../../types"; type Params = { userId: string | number | null; parentDbId?: number | string | null; parentTableId?: number | string | null; }; /** * # Grab All Database Schemas from Directory * @param params * @returns */ export default function grabAllDbSchemas({ userId, parentDbId, parentTableId, }: Params): DSQL_DatabaseSchemaType[] | undefined; export {};