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:
520 bytes
|
Line | |
---|
1 | export interface Schema {
|
---|
2 | /**
|
---|
3 | * Link to schema.
|
---|
4 | */
|
---|
5 | $schema?: string;
|
---|
6 | builders: {
|
---|
7 | [key: string]: Builder;
|
---|
8 | };
|
---|
9 | }
|
---|
10 | /**
|
---|
11 | * Target options for Builders.
|
---|
12 | */
|
---|
13 | export interface Builder {
|
---|
14 | /**
|
---|
15 | * The builder class module.
|
---|
16 | */
|
---|
17 | class?: string;
|
---|
18 | /**
|
---|
19 | * Builder description.
|
---|
20 | */
|
---|
21 | description: string;
|
---|
22 | /**
|
---|
23 | * The next generation builder module.
|
---|
24 | */
|
---|
25 | implementation?: string;
|
---|
26 | /**
|
---|
27 | * Schema for builder option validation.
|
---|
28 | */
|
---|
29 | schema: string;
|
---|
30 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.