feat: add Favicon Generator app with ImageMagick WASM support
This commit is contained in:
23
types/favicon.ts
Normal file
23
types/favicon.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import { ConversionResult } from './media';
|
||||
|
||||
export interface FaviconIcon {
|
||||
name: string;
|
||||
size: number;
|
||||
width: number;
|
||||
height: number;
|
||||
blob?: Blob;
|
||||
previewUrl?: string;
|
||||
}
|
||||
|
||||
export interface FaviconSet {
|
||||
icons: FaviconIcon[];
|
||||
manifest: string;
|
||||
htmlCode: string;
|
||||
}
|
||||
|
||||
export interface FaviconOptions {
|
||||
name: string;
|
||||
shortName: string;
|
||||
backgroundColor: string;
|
||||
themeColor: string;
|
||||
}
|
||||
Reference in New Issue
Block a user