mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-27 07:16:19 +09:00
7 lines
128 B
TypeScript
7 lines
128 B
TypeScript
export interface Platform {
|
|
id: string
|
|
name: string
|
|
endpoint: string
|
|
config: Record<string, unknown>
|
|
active: boolean
|
|
} |