@kuroku/react-static-favicons
Version:
A little helper to make working with react-static and favicons easier.
14 lines (13 loc) • 382 B
TypeScript
/// <reference types="react" />
export interface ReactStaticFaviconsProps {
outputDir: string;
inputFile: string;
configuration: object;
}
export default class ReactStaticFavicons {
props: Readonly<ReactStaticFaviconsProps>;
private cache?;
constructor(props: Readonly<ReactStaticFaviconsProps>);
render(): Promise<JSX.Element[]>;
private build();
}