autokerning
Version:
autokerning computes suggested kerning values for glyph pairs from TrueType/OpenType fonts by rendering glyph bitmaps, applying a small Gaussian blur, and measuring pixel overlap across horizontal offsets. It can be used programmatically (as an imported E
10 lines • 317 B
TypeScript
export type LogLevel = "debug" | "info" | "warn" | "error";
export declare const logger: {
debug: (...args: any[]) => void;
info: (...args: any[]) => void;
warn: (...args: any[]) => void;
error: (...args: any[]) => void;
level: LogLevel;
};
export default logger;
//# sourceMappingURL=log.d.ts.map