Changed too much shit I dont care
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import Gens from "@/gens";
|
||||
|
||||
|
||||
export type Post = {
|
||||
id: Number,
|
||||
title: String,
|
||||
content: String,
|
||||
date?: String,
|
||||
}
|
||||
|
||||
export const postPlaceholder:Post = {
|
||||
id: -1,
|
||||
title: 'Lorem Ipsum',
|
||||
content: Gens.loremipsum()
|
||||
};
|
||||
@@ -0,0 +1,8 @@
|
||||
type Post = {
|
||||
id: Number,
|
||||
title: String,
|
||||
content: String,
|
||||
date?: String,
|
||||
}
|
||||
|
||||
export type { Post }
|
||||
Reference in New Issue
Block a user