gpreview
Version:
Preview Ghost themes locally without a full Ghost installation
17 lines • 484 B
TypeScript
import Handlebars from 'handlebars';
import { Post, TemplateData } from '../types';
interface AuthorsOptions {
hash?: {
separator?: string;
prefix?: string;
suffix?: string;
limit?: string | number;
from?: string | number;
to?: string | number;
};
}
export declare function authorsHelper(this: TemplateData & {
post?: Post;
}, options: AuthorsOptions): Handlebars.SafeString;
export {};
//# sourceMappingURL=authors.d.ts.map