10 lines
394 B
TypeScript
10 lines
394 B
TypeScript
import { DSQL_ChildrenTablesType, DSQL_TableSchemaType } from "../../../types";
|
|
type Params = {
|
|
tables?: DSQL_TableSchemaType[];
|
|
tableSchema?: DSQL_TableSchemaType;
|
|
childTableSchema?: DSQL_ChildrenTablesType;
|
|
tableName?: string;
|
|
};
|
|
export default function grabTargetTableSchemaIndex({ tables, tableName, tableSchema, childTableSchema, }: Params): number | undefined;
|
|
export {};
|