mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-17 02:25:09 +00:00
14 lines
244 B
TypeScript
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
|
|
}
|