22 lines
388 B
TypeScript
22 lines
388 B
TypeScript
export interface TechStackInterface {
|
|
extraClass?: string;
|
|
props: PropsContent;
|
|
}
|
|
|
|
export interface PropsContent {
|
|
header: Header;
|
|
technologies: TechStacks[];
|
|
}
|
|
|
|
export interface Header {
|
|
title: string;
|
|
titleColor: string;
|
|
content: string;
|
|
}
|
|
|
|
export interface TechStacks {
|
|
noteTitle: string;
|
|
noteContent: string;
|
|
noteImage: any;
|
|
noteIcon: string;
|
|
} |