/** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ export interface ParentOfChildComposite { id: Id; } export interface ChildOfParentComposite { parentId: ParentId; } export type RootComposite = & { parentId: undefined } & ParentOfChildComposite;