mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/RelatedArticles
synced 2024-12-26 14:53:10 +00:00
15 lines
254 B
TypeScript
15 lines
254 B
TypeScript
|
declare namespace Codex {
|
||
|
export interface CodexSuggestionThumbnail {
|
||
|
width: number
|
||
|
height: number
|
||
|
url: string
|
||
|
}
|
||
|
|
||
|
export interface ListTitleObject {
|
||
|
label: string
|
||
|
url: string
|
||
|
description: string
|
||
|
thumbnail?: CodexSuggestionThumbnail
|
||
|
}
|
||
|
}
|