UNPKG

storyblok-ts-client

Version:

Typescript library for working with Storyblok management API.

14 lines 396 B
import { ICredentials } from '../interfaces'; export declare class Space { private apiClient; private apiToken; private data; private spaceId; constructor(credentials: ICredentials); readonly id: number; readonly name: string; teardown(): Promise<void>; publishAll(): Promise<void>; sync(): Promise<void>; } //# sourceMappingURL=Space.d.ts.map