google-fonts-plugin
Version:
Webpack plugin that downloads fonts from Google Fonts and encodes them to base64.
11 lines (10 loc) • 408 B
TypeScript
import { compilation as webpackCompilation } from 'webpack';
import DefaultOptions from '../Options/DefaultOptions';
export default class Chunk {
private compilation;
private readonly name;
constructor(compilation: webpackCompilation.Compilation, name: string);
static hash: (options: DefaultOptions) => string;
create: () => boolean;
get: () => webpackCompilation.Chunk;
}