6 lines
237 B
TypeScript
6 lines
237 B
TypeScript
type ValidDataTypes = string | boolean | number | null | undefined | {
|
|
toString(): string;
|
|
};
|
|
export declare function buildConnectionString(data: Record<string, ValidDataTypes>): string;
|
|
export {};
|
|
//# sourceMappingURL=index.d.ts.map
|