CHANGE ref to only refId

This commit is contained in:
Norbert de Langen 2020-02-14 13:13:50 +01:00
parent e8d85dc82d
commit e9b157409f
No known key found for this signature in database
GPG Key ID: 976651DA156C2825

View File

@ -28,6 +28,7 @@ export interface Group {
depth: number;
name: string;
children: StoryId[];
refId?: InceptionRef['id'];
parent?: StoryId;
isComponent: boolean;
isRoot: false;
@ -46,7 +47,7 @@ export interface Story {
parent: StoryId;
name: string;
kind: string;
ref?: InceptionRef;
refId?: InceptionRef['id'];
children?: StoryId[];
isComponent: boolean;
isRoot: false;
@ -68,7 +69,7 @@ export interface StoryInput {
id: StoryId;
name: string;
knownAs?: StoryId;
ref?: InceptionRef;
refId?: InceptionRef;
kind: string;
children: string[];
parameters: {