Commit 0e6df86a authored by Alejandro Celaya's avatar Alejandro Celaya Committed by Alejandro Celaya

Remove no longer needed jsdoc type definitions inside TS file

parent 9bdbfcb1
...@@ -9,23 +9,13 @@ import type { FrameSyncService } from '../services/frame-sync'; ...@@ -9,23 +9,13 @@ import type { FrameSyncService } from '../services/frame-sync';
import { useSidebarStore } from '../store'; import { useSidebarStore } from '../store';
import Thread from './Thread'; import Thread from './Thread';
/**
* @typedef {import('../../types/api').Annotation} Annotation
* @typedef {import('../../types/config').SidebarSettings} SidebarSettings
*/
/**
* @typedef ThreadCardProps
* @prop {import('../helpers/build-thread').Thread} thread
* @prop {import('../services/frame-sync').FrameSyncService} frameSync
*/
export type ThreadCardProps = { export type ThreadCardProps = {
thread: IThread; thread: IThread;
// injected // injected
frameSync: FrameSyncService; frameSync: FrameSyncService;
}; };
/** /**
* A "top-level" `Thread`, rendered as a "card" in the sidebar. A `Thread` * A "top-level" `Thread`, rendered as a "card" in the sidebar. A `Thread`
* renders its own child `Thread`s within itself. * renders its own child `Thread`s within itself.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment