blob: 5eede116730f3e06a01da5ab4299d3b3a9c2e451 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
export declare class Spinner {
private readonly spinner;
/** When false, only fail messages will be displayed. */
enabled: boolean;
constructor(text?: string);
set text(text: string);
succeed(text?: string): void;
info(text?: string): void;
fail(text?: string): void;
warn(text?: string): void;
stop(): void;
start(text?: string): void;
}
|