Last change
on this file since fa375fe was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.1 KB
|
Line | |
---|
1 | /**
|
---|
2 | * Opens the official Angular documentation (angular.io) in a browser, and searches for a
|
---|
3 | * given keyword.
|
---|
4 | */
|
---|
5 | export interface Schema {
|
---|
6 | /**
|
---|
7 | * Shows a help message for this command in the console.
|
---|
8 | */
|
---|
9 | help?: HelpUnion;
|
---|
10 | /**
|
---|
11 | * The keyword to search for, as provided in the search bar in angular.io.
|
---|
12 | */
|
---|
13 | keyword?: string;
|
---|
14 | /**
|
---|
15 | * Search all of angular.io. Otherwise, searches only API reference documentation.
|
---|
16 | */
|
---|
17 | search?: boolean;
|
---|
18 | /**
|
---|
19 | * Contains the version of Angular to use for the documentation. If not provided, the
|
---|
20 | * command uses your current Angular core version.
|
---|
21 | */
|
---|
22 | version?: VersionUnion;
|
---|
23 | }
|
---|
24 | /**
|
---|
25 | * Shows a help message for this command in the console.
|
---|
26 | */
|
---|
27 | export declare type HelpUnion = boolean | HelpEnum;
|
---|
28 | export declare enum HelpEnum {
|
---|
29 | HelpJson = "JSON",
|
---|
30 | Json = "json"
|
---|
31 | }
|
---|
32 | /**
|
---|
33 | * Contains the version of Angular to use for the documentation. If not provided, the
|
---|
34 | * command uses your current Angular core version.
|
---|
35 | */
|
---|
36 | export declare type VersionUnion = number | VersionEnum;
|
---|
37 | export declare enum VersionEnum {
|
---|
38 | Next = "next"
|
---|
39 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.