devicons
Version:
Devicons - Icon font for developers
12 lines (10 loc) • 409 B
TypeScript
declare const cssPath: () => string;
declare const woff2Path: () => string;
declare const ttfPath: () => string;
declare const spritePath: () => string;
declare const codepointsPath: () => string;
interface Codepoints {
[name: string]: number;
}
declare const loadCodepoints: () => Promise<Codepoints>;
export { type Codepoints, codepointsPath, cssPath, loadCodepoints, spritePath, ttfPath, woff2Path };