19 lines
368 B
TypeScript
19 lines
368 B
TypeScript
declare module "*config.yaml" {
|
|
const value: {
|
|
title?: string;
|
|
description?: string;
|
|
icon?: string;
|
|
background?: string;
|
|
socials: {
|
|
name: string;
|
|
link: string;
|
|
icon?: string;
|
|
}[];
|
|
};
|
|
export default value;
|
|
}
|
|
|
|
declare module "*.yaml" {
|
|
const value: any; // Add type definitions here if desired
|
|
export default value;
|
|
}
|