node-pg-migrate
Version:
PostgreSQL database migration management tool for node.js
6 lines (5 loc) • 295 B
TypeScript
import type { MigrationOptions } from '../../types';
import type { Name } from '../generalTypes';
import type { RoleOptions } from './shared';
export type AlterRole = (roleName: Name, roleOptions: RoleOptions) => string;
export declare function alterRole(mOptions: MigrationOptions): AlterRole;