Skip to content

Commit d421ccb

Browse files
committed
add typings
1 parent 4600245 commit d421ccb

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

configure-package.d.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
export type Feature = {
2+
info: {
3+
name: string;
4+
description: string;
5+
prompt: string;
6+
};
7+
packages: {
8+
dependencies: {
9+
[key: string]: string;
10+
};
11+
devDependencies: {
12+
[key: string]: string;
13+
};
14+
};
15+
scripts: {
16+
[key: string]: string;
17+
};
18+
};

0 commit comments

Comments
 (0)