8 lines
132 B
TypeScript
8 lines
132 B
TypeScript
export interface Theme {
|
|
key: string;
|
|
title: string;
|
|
description: string;
|
|
|
|
// URL of the image
|
|
image: string;
|
|
}
|