7 lines
178 B
TypeScript
7 lines
178 B
TypeScript
type Param = {
|
|
dbContext?: "Master" | "Dsql User";
|
|
dbFullName?: string;
|
|
};
|
|
export default function checkIfIsMaster({ dbContext, dbFullName }: Param): boolean;
|
|
export {};
|