alapa
Version:
A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.
18 lines (17 loc) • 338 B
TypeScript
/**
* Spanner specific connection credential options.
*/
export interface SpannerConnectionCredentialsOptions {
/**
* Connection url where perform connection to.
*/
instanceId?: string;
/**
* Database host.
*/
projectId?: string;
/**
* Database host port.
*/
databaseId?: string;
}