gpreview
Version:
Preview Ghost themes locally without a full Ghost installation
12 lines • 356 B
TypeScript
import Handlebars from 'handlebars';
import { Post, Page, TemplateData } from '../types';
interface PostClassOptions {
hash?: {
class?: string;
};
}
export declare function postClassHelper(this: TemplateData & {
post?: Post | Page;
}, options: PostClassOptions): Handlebars.SafeString;
export {};
//# sourceMappingURL=postClass.d.ts.map