@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
11 lines • 360 B
TypeScript
import { GrantEnum } from '../grant/GrantEnum';
/** Users */
export interface Database {
/** Database granted for this user */
databaseName: string;
/** The grantId associated for this databaseName and this userName */
grantId: number;
/** User's rights on this database */
grantType: GrantEnum;
}
//# sourceMappingURL=Database.d.ts.map