md2
Version:
Angular2 based Material Design components, directives and services are Accordion, Autocomplete, Chips(Tags), Collapse, Colorpicker, Data Table, Datepicker, Dialog(Modal), Menu, Multiselect, Select, Tabs, Tags(Chips), Toast and Tooltip.
31 lines (30 loc) • 1 kB
TypeScript
/**
* Throws an exception when attempting to attach a null portal to a host.
* @docs-private
*/
export declare function throwNullPortalError(): void;
/**
* Throws an exception when attempting to attach a portal to a host that is already attached.
* @docs-private
*/
export declare function throwPortalAlreadyAttachedError(): void;
/**
* Throws an exception when attempting to attach a portal to an already-disposed host.
* @docs-private
*/
export declare function throwPortalHostAlreadyDisposedError(): void;
/**
* Throws an exception when attempting to attach an unknown portal type.
* @docs-private
*/
export declare function throwUnknownPortalTypeError(): void;
/**
* Throws an exception when attempting to attach a portal to a null host.
* @docs-private
*/
export declare function throwNullPortalHostError(): void;
/**
* Throws an exception when attempting to detach a portal that is not attached.
* @docs-privatew
*/
export declare function throwNoPortalAttachedError(): void;