UNPKG

terminus-cloud-settings-sync

Version:

Cloud Services sync the Tabby config and connections across platform devices.

13 lines (12 loc) 307 B
/** * Root class for the Gist */ declare class Gist { protected baseRequestUrl: string; protected id: string; protected accessToken: string; constructor(url: string, id: string, accessToken: string); getSyncTextDateTime(): string; getDummyContent(): string; } export default Gist;