Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Line | |
---|
1 | /**
|
---|
2 | * @license
|
---|
3 | * Copyright Google LLC All Rights Reserved.
|
---|
4 | *
|
---|
5 | * Use of this source code is governed by an MIT-style license that can be
|
---|
6 | * found in the LICENSE file at https://angular.io/license
|
---|
7 | */
|
---|
8 | /**
|
---|
9 | * Throws an exception when attempting to attach a null portal to a host.
|
---|
10 | * @docs-private
|
---|
11 | */
|
---|
12 | export declare function throwNullPortalError(): void;
|
---|
13 | /**
|
---|
14 | * Throws an exception when attempting to attach a portal to a host that is already attached.
|
---|
15 | * @docs-private
|
---|
16 | */
|
---|
17 | export declare function throwPortalAlreadyAttachedError(): void;
|
---|
18 | /**
|
---|
19 | * Throws an exception when attempting to attach a portal to an already-disposed host.
|
---|
20 | * @docs-private
|
---|
21 | */
|
---|
22 | export declare function throwPortalOutletAlreadyDisposedError(): void;
|
---|
23 | /**
|
---|
24 | * Throws an exception when attempting to attach an unknown portal type.
|
---|
25 | * @docs-private
|
---|
26 | */
|
---|
27 | export declare function throwUnknownPortalTypeError(): void;
|
---|
28 | /**
|
---|
29 | * Throws an exception when attempting to attach a portal to a null host.
|
---|
30 | * @docs-private
|
---|
31 | */
|
---|
32 | export declare function throwNullPortalOutletError(): void;
|
---|
33 | /**
|
---|
34 | * Throws an exception when attempting to detach a portal that is not attached.
|
---|
35 | * @docs-private
|
---|
36 | */
|
---|
37 | export declare function throwNoPortalAttachedError(): void;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.