mirror of
https://github.com/fergalmoran/opengifame.git
synced 2026-01-04 07:57:14 +00:00
15 lines
296 B
TypeScript
15 lines
296 B
TypeScript
export default interface Gif {
|
|
id: string;
|
|
slug: string;
|
|
title: string;
|
|
description: string | null;
|
|
fileName: string;
|
|
searchTerms: string[];
|
|
dateCreated: string;
|
|
upVotes: number;
|
|
downVotes: number;
|
|
hasVoted: Boolean;
|
|
fixedEmbedCode: string;
|
|
responsiveEmbedCode: string;
|
|
}
|