1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-17 02:25:09 +00:00
conky/web/global.d.ts
2024-04-24 17:01:38 -04:00

14 lines
244 B
TypeScript

declare module 'next/config' {
type ConfigTypes = () => {
publicRuntimeConfig: {
modifiedDate: string
modifiedYear: string
gitHash: string?
}
}
declare const getConfig: ConfigTypes
export default getConfig
}