gpreview
Version:
Preview Ghost themes locally without a full Ghost installation
13 lines • 367 B
TypeScript
import Handlebars from 'handlebars';
import { Post, Page, TemplateData } from '../types';
interface ContentOptions {
hash?: {
words?: string | number;
};
}
export declare function contentHelper(this: TemplateData & {
post?: Post;
page?: Page;
}, options: ContentOptions): Handlebars.SafeString;
export {};
//# sourceMappingURL=content.d.ts.map