10 lines
191 B
TypeScript
10 lines
191 B
TypeScript
type Param = {
|
|
dbName: string;
|
|
userId?: string | number;
|
|
};
|
|
/**
|
|
* # Grab Database Full Name
|
|
*/
|
|
export default function grabDbFullName({ dbName, userId }: Param): string;
|
|
export {};
|