@meotimdihia/upload-gphotos
Version:
Upload to Google Photos
54 lines (53 loc) • 1.6 kB
TypeScript
/// <reference types="node" />
import util from "util";
import { CookieJar } from "tough-cookie";
import { Nullable } from "option-t/cjs/Nullable";
import { AxiosRequestConfig } from 'axios';
import { GPhotosPhoto } from "./GPhotosPhoto";
import { GPhotosAlbum } from "./GPhotosAlbum";
declare type LoginParams = {
username: string;
password: string;
};
declare class GPhotos {
private requestor;
constructor(options?: {
axiosConfig?: AxiosRequestConfig;
});
setCookieJar(jar: CookieJar): void;
signin(params: LoginParams): Promise<void>;
fetchAlbumoById({ id }: {
id: string;
}): Promise<GPhotosAlbum>;
fetchAlbumList({ cursor, }: {
cursor: Nullable<string>;
}): Promise<{
results: GPhotosAlbum[];
nextCursor: Nullable<string>;
}>;
searchAlbum({ title, }: {
title: string;
}): Promise<Nullable<GPhotosAlbum>>;
createAlbum({ title }: {
title: string;
}): Promise<GPhotosAlbum>;
private createAlbumLegacyFallback;
fetchPhotoById({ id }: {
id: string;
}): Promise<GPhotosPhoto>;
fetchPhotoList({ cursor, }: {
cursor: Nullable<string>;
}): Promise<{
results: GPhotosPhoto[];
nextCursor: Nullable<string>;
}>;
upload({ stream, size, filename, }: {
stream: NodeJS.ReadableStream;
size: number;
filename: string;
}): Promise<GPhotosPhoto>;
toJSON(): {};
toString(): string;
[util.inspect.custom](): string;
}
export { GPhotos };