mirror of
https://github.com/koodiklinikka/koodiklinikka.fi.git
synced 2026-01-26 11:23:58 +00:00
10 lines
168 B
TypeScript
10 lines
168 B
TypeScript
export interface KKEvent {
|
|
image: string;
|
|
imageLink: string;
|
|
body: string;
|
|
type: "github" | "twitter";
|
|
user: string;
|
|
userLink: string;
|
|
timestamp: Date;
|
|
}
|