/** カラーコードから画像を作る * * @param color - カラーコード CSS colorなら何でもいい * @param init - 画像の大きさとか */ export function makeColorImage( color: string; init?: ImageInit, ): Promise; export interface ImageInit { width?: number; height?: number; }