/** Gyazoへ画像をuploadする * * @param image uploadする画像データ * @param options options */ export function uploadGyazoOAuth(image: Blob, options?: GyazoOption): Promise; export interface GyazoOption { title?: string; description?: string; created?: number; } export interface GyazoResult { image_id: string; permalink_url: string; thumb_url: string; url: string; type: string; } /** Access Tokenを取得する */ function getOAuthToken(): Promise;