mirror of
https://github.com/LucasVbr/LucasVbr.git
synced 2026-05-13 17:11:52 +00:00
20 lines
400 B
TypeScript
20 lines
400 B
TypeScript
import type BannerModel from './BannerModel.ts';
|
|
import type LinkModel from './LinkModel.ts';
|
|
import type BadgeModel from './BadgeModel.ts';
|
|
|
|
type ConfigModel = {
|
|
file: {
|
|
template: string,
|
|
output: string
|
|
},
|
|
view: {
|
|
userName: string,
|
|
banner: BannerModel,
|
|
about: string,
|
|
links: LinkModel[],
|
|
skills: BadgeModel[],
|
|
footer: string[]
|
|
}
|
|
}
|
|
|
|
export default ConfigModel; |