@brandazm/dynamic-permissions
Version:
A flexible and powerful permissions management system for NestJS applications with built-in security features
7 lines (6 loc) • 331 B
TypeScript
import { HttpException } from '@nestjs/common';
export type MigrationExceptionType = 'MIGRATION_FAILED' | 'SCHEMA_MISMATCH' | 'ROLLBACK_FAILED' | 'CONFIG_LOAD_ERROR';
export declare class MigrationException extends HttpException {
type: MigrationExceptionType;
constructor(type: MigrationExceptionType, details: string);
}