UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

11 lines 354 B
import { GrantEnum } from '../grant/GrantEnum'; /** Users */ export interface User { /** The grantId associated for this databaseName and this userName */ grantId: number; /** User's rights on this database */ grantType: GrantEnum; /** User's name granted on this database */ userName: string; } //# sourceMappingURL=User.d.ts.map