mirror of
https://github.com/feeddeck/feeddeck.git
synced 2026-03-12 01:54:51 -05:00
17 lines
347 B
TypeScript
17 lines
347 B
TypeScript
export interface IItem {
|
|
id: string;
|
|
userId: string;
|
|
columnId: string;
|
|
sourceId: string;
|
|
title: string;
|
|
link: string;
|
|
media?: string;
|
|
description?: string;
|
|
author?: null | string;
|
|
// deno-lint-ignore no-explicit-any
|
|
options?: null | Record<string, any>;
|
|
publishedAt: number;
|
|
isRead?: boolean;
|
|
isBookmarked?: boolean;
|
|
}
|