gpreview
Version:
Preview Ghost themes locally without a full Ghost installation
14 lines • 386 B
TypeScript
import type { Site, Post, Page } from '../types';
interface HandlebarsContext {
post?: Post;
page?: Page;
site?: Site;
'@site'?: Site;
title?: string;
}
interface HandlebarsOptions {
hash?: Record<string, unknown>;
}
export declare function titleHelper(this: HandlebarsContext, _options: HandlebarsOptions): string;
export {};
//# sourceMappingURL=title.d.ts.map