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