8 lines
127 B
TypeScript
8 lines
127 B
TypeScript
export interface PageSeo {
|
|
title: string;
|
|
description: string;
|
|
metaRobotsIndex?: string;
|
|
metaRobotsFollow?: string;
|
|
}
|
|
|