mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-16 10:05:22 +00:00
13 lines
221 B
TypeScript
13 lines
221 B
TypeScript
declare module 'next/config' {
|
|
type ConfigTypes = () => {
|
|
publicRuntimeConfig: {
|
|
modifiedDate: string
|
|
modifiedYear: string
|
|
}
|
|
}
|
|
|
|
declare const getConfig: ConfigTypes
|
|
|
|
export default getConfig
|
|
}
|