UNPKG

node-pg-migrate

Version:

PostgreSQL database migration management tool for node.js

7 lines (6 loc) 432 B
import type { MigrationOptions } from '../../types'; import type { OnlyGrantOnSchemasOptions } from './grantOnSchemas'; import type { RevokeOnObjectsOptions } from './shared'; export type RevokeOnSchemasOptions = OnlyGrantOnSchemasOptions & RevokeOnObjectsOptions; export type RevokeOnSchemas = (revokeOptions: RevokeOnSchemasOptions) => string; export declare function revokeOnSchemas(mOptions: MigrationOptions): RevokeOnSchemas;