9 lines
279 B
TypeScript
9 lines
279 B
TypeScript
import {NanoRenderer} from '../types/nano';
|
|
import {CssLikeObject} from '../types/common';
|
|
|
|
export interface GoogleFontAddon {
|
|
googleFont(font: string, weights: number | string | (number | string)[], subsets: string | string[]);
|
|
}
|
|
|
|
export function addon(nano: NanoRenderer);
|