mirror of
https://github.com/andatoshiki/toshiki-home-nuxt3.git
synced 2026-06-06 02:46:30 +00:00
21 lines
359 B
TypeScript
Executable File
21 lines
359 B
TypeScript
Executable File
/* Interfaces */
|
|
export interface SponsorLinks {
|
|
github: string
|
|
}
|
|
|
|
export interface Social {
|
|
discord: string
|
|
twitter: string
|
|
github: string
|
|
instagram: string
|
|
trello: string
|
|
email: string
|
|
}
|
|
|
|
declare module '@nuxt/types/config/runtime' {
|
|
interface NuxtRuntimeConfig {
|
|
social: Social
|
|
sponsor: SponsorLinks
|
|
}
|
|
}
|