Skip to content

Commit 27d8633

Browse files
committed
type definition of tags
1 parent dce3b35 commit 27d8633

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

engine/playbook.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import {Step} from "./step";
22

3-
type Tag = Record<string, string[]>
4-
53
export class Playbook{
64
public name: string;
75
public path: string;
@@ -10,5 +8,5 @@ export class Playbook{
108
public description: string;
119
public conclusion: string;
1210
public steps: Step[] = [];
13-
public tags: Tag;
11+
public tags: Record<string, string[]>;
1412
}

0 commit comments

Comments
 (0)