mirror of
https://github.com/LucasVbr/LucasVbr.git
synced 2026-05-13 17:11:52 +00:00
9 lines
203 B
TypeScript
9 lines
203 B
TypeScript
type BannerModel = {
|
|
text1: string,
|
|
text2?: string,
|
|
type: "origin" | "textBox" | "glitch" | "luminance" | "typeWriter" | "rainbow",
|
|
width: number,
|
|
height: number,
|
|
}
|
|
|
|
export default BannerModel; |