12 lines
296 B
TypeScript
12 lines
296 B
TypeScript
type Param = {
|
|
type: "foreign_key" | "index" | "user";
|
|
userId?: string | number;
|
|
addDate?: boolean;
|
|
};
|
|
/**
|
|
* # Grab Key Names
|
|
* @description Grab key names for foreign keys and indexes
|
|
*/
|
|
export default function grabSQLKeyName({ type, userId, addDate }: Param): string;
|
|
export {};
|