gpreview
Version:
Preview Ghost themes locally without a full Ghost installation
19 lines • 484 B
TypeScript
import { Site, Post, Page, Tag, Author } from '../types';
interface MetaContext {
site?: Site;
'@site'?: Site;
post?: Post;
'@post'?: Post;
page?: Page;
'@page'?: Page;
tag?: Tag;
'@tag'?: Tag;
author?: Author;
'@author'?: Author;
}
export declare const metaHelper: {
title: (this: MetaContext, _options: unknown) => string;
description: (this: MetaContext, _options: unknown) => string;
};
export {};
//# sourceMappingURL=meta.d.ts.map