carta-md
Version:
A lightweight, fully customizable, Markdown editor
14 lines (13 loc) • 362 B
TypeScript
import type { DefaultIconId } from './icons';
import type { Intellisense } from './utils';
type IconId = Intellisense<DefaultIconId>;
/**
* Labels that may appear in the editor.
*/
export interface Labels {
writeTab: string;
previewTab: string;
iconsLabels: Partial<Record<IconId, string>>;
}
export declare const defaultLabels: Labels;
export {};