canvg
Version:
JavaScript SVG parser and renderer on Canvas.
10 lines • 372 B
TypeScript
import { Document } from './Document';
import { Element } from './Element';
export declare class FontFaceElement extends Element {
type: string;
readonly ascent: number;
readonly descent: number;
readonly unitsPerEm: number;
constructor(document: Document, node: HTMLElement, captureTextNodes?: boolean);
}
//# sourceMappingURL=FontFaceElement.d.ts.map