6 lines
88 B
TypeScript
6 lines
88 B
TypeScript
export type PageMeta = {
|
|
name: string;
|
|
lastModified: number;
|
|
version?: number;
|
|
};
|