14 lines
221 B
TypeScript
14 lines
221 B
TypeScript
/**
|
|
* Represent a download db record
|
|
*/
|
|
|
|
export interface IRecord {
|
|
uid: string,
|
|
url: string,
|
|
title: string,
|
|
thumbnail: string,
|
|
created: Date,
|
|
size: string,
|
|
pid: number,
|
|
params: string,
|
|
} |