mirror of
https://github.com/MeshEnvy/mesh-forge.git
synced 2026-03-28 17:42:55 +01:00
18 lines
311 B
TypeScript
18 lines
311 B
TypeScript
export type Plugin = {
|
|
name: string
|
|
description: string
|
|
repo: string
|
|
homepage: string
|
|
imageUrl: string
|
|
version: string
|
|
author: string
|
|
featured: boolean
|
|
dependencies: Record<string, string>
|
|
includes?: string[]
|
|
}
|
|
|
|
export type PluginDisplay = Plugin & {
|
|
downloads?: number
|
|
stars?: number
|
|
}
|