mirror of
https://github.com/quartz-community/description.git
synced 2026-07-22 02:50:28 +00:00
11 lines
399 B
TypeScript
11 lines
399 B
TypeScript
import { QuartzTransformerPlugin } from '@quartz-community/types';
|
|
export { QuartzTransformerPlugin } from '@quartz-community/types';
|
|
|
|
interface DescriptionOptions {
|
|
descriptionLength: number;
|
|
maxDescriptionLength: number;
|
|
replaceExternalLinks: boolean;
|
|
}
|
|
declare const Description: QuartzTransformerPlugin<Partial<DescriptionOptions>>;
|
|
|
|
export { Description, type DescriptionOptions };
|