UNPKG

wombo-dream-api

Version:
12 lines (11 loc) 791 B
/// <reference types="node" /> import GoogleAuthentifier from './GoogleAuthentifier'; import { AuthorisationCache, CredentialsBody } from './types'; declare const createRandomUsername: () => string; declare const createRandomCredentials: () => CredentialsBody; declare const createRandomAuthorisationCache: () => AuthorisationCache; declare const createAnonymousAuthentifier: () => Promise<GoogleAuthentifier>; declare const createAnonymousValidAuthentifier: () => Promise<GoogleAuthentifier>; declare const createValidAuthentifier: () => Promise<GoogleAuthentifier>; declare const jpegImage: Buffer; export { createRandomCredentials, createRandomUsername, createRandomAuthorisationCache, createAnonymousAuthentifier, createAnonymousValidAuthentifier, createValidAuthentifier, jpegImage, };