Files
standardnotes-app-web/packages/web/src/javascripts/Utils/Items/Search/ItemLink.ts
2022-11-08 13:31:48 -06:00

8 lines
181 B
TypeScript

import { LinkableItem } from './LinkableItem'
export type ItemLink<ItemType extends LinkableItem = LinkableItem> = {
id: string
item: ItemType
type: 'linked' | 'linked-by'
}