Last change
on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
317 bytes
|
Line | |
---|
1 | export interface Schema {
|
---|
2 | currentDirectory: string;
|
---|
3 | id: number;
|
---|
4 | info: {
|
---|
5 | [key: string]: any;
|
---|
6 | };
|
---|
7 | options?: {
|
---|
8 | [key: string]: any;
|
---|
9 | };
|
---|
10 | target?: Target;
|
---|
11 | workspaceRoot: string;
|
---|
12 | }
|
---|
13 | export interface Target {
|
---|
14 | configuration?: string;
|
---|
15 | project: string;
|
---|
16 | target: string;
|
---|
17 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.