ng-messages2
Version:
Angular version of ng-message
44 lines (43 loc) • 1.19 kB
TypeScript
import { ClError } from './error';
/**
* Exception thrown when attempting to attach a null portal to a host.
* @docs-private
*/
export declare class NullPortalError extends ClError {
constructor();
}
/**
* Exception thrown when attempting to attach a portal to a host that is already attached.
* @docs-private
*/
export declare class PortalAlreadyAttachedError extends ClError {
constructor();
}
/**
* Exception thrown when attempting to attach a portal to an already-disposed host.
* @docs-private
*/
export declare class PortalHostAlreadyDisposedError extends ClError {
constructor();
}
/**
* Exception thrown when attempting to attach an unknown portal type.
* @docs-private
*/
export declare class UnknownPortalTypeError extends ClError {
constructor();
}
/**
* Exception thrown when attempting to attach a portal to a null host.
* @docs-private
*/
export declare class NullPortalHostError extends ClError {
constructor();
}
/**
* Exception thrown when attempting to detach a portal that is not attached.
* @docs-private
*/
export declare class NoPortalAttachedError extends ClError {
constructor();
}